package do import ( "github.com/gogf/gf/v2/os/gtime" "github.com/gogf/gf/v2/util/gmeta" ) // SpeciesName is the golang structure for table species_name. type SpeciesName struct { gmeta.Meta `orm:"table:species_name, do:true"` Id interface{} `orm:"id,primary" json:"id"` // 主键 SpeciesCode interface{} `orm:"species_code" json:"speciesCode"` // 物种编号 Name interface{} `orm:"name" json:"name"` // 物种名称 Content interface{} `orm:"content" json:"content"` // 物种名称内容 SourcesData interface{} `orm:"sources_data" json:"sourcesData"` // 数据来源 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"` // 数据核查日期 Remark interface{} `orm:"remark" json:"remark"` // 备注 }