test_print.go 309 B

12345678910111213
  1. package api
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. func Printr(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  6. // id, _ := primitive.ObjectIDFromHex("638edc9ac3242a12b462efce")
  7. // return searchBillTypeById(apictx, repo.CollectionBillProduce, id)
  8. return generateSerial(apictx, "纸张类")
  9. }