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.

18 lines
487 B

package gys
import "github.com/golangkit/formatime"
type OcrBusinessLicense struct {
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 (*OcrBusinessLicense) TableName() string {
return "gys_ocr_business_license"
}