37 lines
1.8 KiB
Go
37 lines
1.8 KiB
Go
// ==========================================================================
|
||
// GFast自动生成model entity操作代码。
|
||
// 生成日期:2025-08-11 16:49:09
|
||
// 生成路径: internal/app/businesses/model/entity/species_imgs.go
|
||
// 生成人:gfast
|
||
// desc:
|
||
// company:云南奇讯科技有限公司
|
||
// ==========================================================================
|
||
|
||
package entity
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
"github.com/gogf/gf/v2/util/gmeta"
|
||
)
|
||
|
||
// SpeciesImgs is the golang structure for table species_imgs.
|
||
type SpeciesImgs struct {
|
||
gmeta.Meta `orm:"table:species_imgs"`
|
||
Id int `orm:"Id,primary" json:"id"` //
|
||
SpeciesCode string `orm:"species_code" json:"speciesCode"` // 物种编码
|
||
Imgs string `orm:"imgs" json:"imgs"` // 图片
|
||
ImgType string `orm:"img_type" json:"imgType"` // 图片类型
|
||
ImgSource string `orm:"img_source" json:"imgSource"` // 图片来源
|
||
CreateUser int `orm:"create_user" json:"createUser"` // 图片拍摄/提供人
|
||
CreateDate *gtime.Time `orm:"create_date" json:"createDate"` // 图片拍摄/提供日期
|
||
AuditUser int `orm:"audit_user" json:"auditUser"` // 图片核查人
|
||
AuditDate *gtime.Time `orm:"audit_date" json:"auditDate"` // 图片核查日期
|
||
AuditStatus int `orm:"audit_status" json:"auditStatus"` // 核查
|
||
AuditView string `orm:"audit_view" json:"auditView"` // 核查意见
|
||
Remark string `orm:"remark" json:"remark"` // 备注
|
||
Version int `orm:"version" json:"version"` // 版本
|
||
CreatedAt *gtime.Time `orm:"created_at" json:"createdAt"` //
|
||
UpdatedAt *gtime.Time `orm:"updated_at" json:"updatedAt"` //
|
||
DeletedAt *gtime.Time `orm:"deleted_at" json:"deletedAt"` //
|
||
}
|