44 lines
2.8 KiB
Go
44 lines
2.8 KiB
Go
// ==========================================================================
|
||
// GFast自动生成model entity操作代码。
|
||
// 生成日期:2025-08-11 16:38:01
|
||
// 生成路径: internal/app/businesses/model/entity/biology_ecology.go
|
||
// 生成人:gfast
|
||
// desc:基本生物学与生态学
|
||
// company:云南奇讯科技有限公司
|
||
// ==========================================================================
|
||
|
||
package entity
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
"github.com/gogf/gf/v2/util/gmeta"
|
||
)
|
||
|
||
// BiologyEcology is the golang structure for table biology_ecology.
|
||
type BiologyEcology struct {
|
||
gmeta.Meta `orm:"table:biology_ecology"`
|
||
Id int `orm:"id,primary" json:"id"` //
|
||
SpeciesCode string `orm:"species_code" json:"speciesCode"` // 编码
|
||
LifeHistory string `orm:"life_history" json:"lifeHistory"` // 生活史/侵染循环
|
||
Character string `orm:"character" json:"character"` // 发生与危害特性
|
||
HabitatType string `orm:"habitat_type" json:"habitatType"` // 生境类型
|
||
ZoologyDescribe string `orm:"zoology_describe" json:"zoologyDescribe"` // 生态、经济和社会影响描述
|
||
SpecimenGather string `orm:"specimen_gather" json:"specimenGather"` // 模式标本采集地
|
||
SpecimenSave string `orm:"specimen_save" json:"specimenSave"` // 模式标本保存地
|
||
IntroduceDesc string `orm:"introduce_desc" json:"introduceDesc"` // 首次发现或引入的地点及时间
|
||
Diffuse string `orm:"diffuse" json:"diffuse"` // 传播与扩散途径
|
||
RiskAssessment string `orm:"risk_assessment" json:"riskAssessment"` // 风险评估结果
|
||
SourcesData string `orm:"sources_data" json:"sourcesData"` // 数据来源
|
||
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"` //
|
||
}
|