You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
552 B

package enterprise
import (
"github.com/golangkit/formatime"
"recook/internal/v2/lib/db"
)
type OcrBusinessLicenseModel struct {
db.BaseModel
Id uint `json:"id"`
ImgPath string `json:"imgPath"`
IsSuccess int `json:"isSuccess"`
Name string `json:"name"`
RegNum string `json:"regNum"`
CreatedAt formatime.Second `json:"createdAt"`
UpdatedAt formatime.Second `json:"updatedAt"`
}
func (*OcrBusinessLicenseModel) TableName() string {
return "gys_ocr_business_license"
}