44 lines
2.8 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ==========================================================================
// GFast自动生成model entity操作代码。
// 生成日期2025-08-11 16:38:01
// 生成路径: internal/app/businesses/model/entity/biology_ecology.go
// 生成人gfast
// desc:基本生物学与生态学
// company:云南奇讯科技有限公司
// ==========================================================================
package do
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, do:true"`
Id interface{} `orm:"id,primary" json:"id"` //
SpeciesCode interface{} `orm:"species_code" json:"speciesCode"` // 编码
LifeHistory interface{} `orm:"life_history" json:"lifeHistory"` // 生活史/侵染循环
Character interface{} `orm:"character" json:"character"` // 发生与危害特性
HabitatType interface{} `orm:"habitat_type" json:"habitatType"` // 生境类型
ZoologyDescribe interface{} `orm:"zoology_describe" json:"zoologyDescribe"` // 生态、经济和社会影响描述
SpecimenGather interface{} `orm:"specimen_gather" json:"specimenGather"` // 模式标本采集地
SpecimenSave interface{} `orm:"specimen_save" json:"specimenSave"` // 模式标本保存地
IntroduceDesc interface{} `orm:"introduce_desc" json:"introduceDesc"` // 首次发现或引入的地点及时间
Diffuse interface{} `orm:"diffuse" json:"diffuse"` // 传播与扩散途径
RiskAssessment interface{} `orm:"risk_assessment" json:"riskAssessment"` // 风险评估结果
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"` // 数据核查日期
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"` //
}