// ========================================================================== // GFast自动生成model entity操作代码。 // 生成日期:2025-08-08 11:21:24 // 生成路径: internal/app/businesses/model/entity/geography.go // 生成人:gfast // desc:地理分布 // company:云南奇讯科技有限公司 // ========================================================================== package do import ( "github.com/gogf/gf/v2/os/gtime" "github.com/gogf/gf/v2/util/gmeta" ) // Geography is the golang structure for table geography. type Geography struct { gmeta.Meta `orm:"table:geography, do:true"` Id interface{} `orm:"id,primary" json:"id"` // SpeciesCode interface{} `orm:"species_code" json:"speciesCode"` // 物种编码 DistributionInfo interface{} `orm:"distribution_info" json:"distributionInfo"` // 地理分布描述 OriginInfo interface{} `orm:"origin_info" json:"originInfo"` // 原产地描述 AbroadInfo interface{} `orm:"abroad_info" json:"abroadInfo"` // 国外分布描述 DomesticInfo interface{} `orm:"domestic_info" json:"domesticInfo"` // 国内分布描述 CreateUser interface{} `orm:"create_user" json:"createUser"` // 数据采集人 CreateDate *gtime.Time `orm:"create_date" json:"createDate"` // 数据采集日期 AuditUser interface{} `orm:"audit_user" json:"auditUser"` // 数据核查人 AuditDate *gtime.Time `orm:"audit_date" json:"auditDate"` // 数据核查日期 AuditStatus interface{} `orm:"audit_status" json:"auditStatus"` // 核查状态 AuditView interface{} `orm:"audit_view" json:"auditView"` // 核查意见 Remark interface{} `orm:"remark" json:"remark"` // 备注 Version interface{} `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"` // }