56 lines
3.8 KiB
Go
56 lines
3.8 KiB
Go
// ==========================================================================
|
||
// GFast自动生成model entity操作代码。
|
||
// 生成日期:2025-08-11 10:08:28
|
||
// 生成路径: internal/app/businesses/model/entity/natural_enemy_insect.go
|
||
// 生成人:gfast
|
||
// desc:天敌昆虫
|
||
// company:云南奇讯科技有限公司
|
||
// ==========================================================================
|
||
|
||
package entity
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
"github.com/gogf/gf/v2/util/gmeta"
|
||
)
|
||
|
||
// NaturalEnemyInsect is the golang structure for table natural_enemy_insect.
|
||
type NaturalEnemyInsect struct {
|
||
gmeta.Meta `orm:"table:natural_enemy_insect"`
|
||
Id int `orm:"id,primary" json:"id"` //
|
||
SpeciesCode string `orm:"species_code" json:"speciesCode"` // 物种编码(入侵种)
|
||
ZhName string `orm:"zh_name" json:"zhName"` // 中文名称(天敌)
|
||
LatinName string `orm:"latin_name" json:"latinName"` // 拉丁学名(天敌)
|
||
Mu string `orm:"mu" json:"mu"` // 目
|
||
OrderTitle string `orm:"order_title" json:"orderTitle"` // Order
|
||
Ke string `orm:"ke" json:"ke"` // 科
|
||
Family string `orm:"family" json:"family"` // Family
|
||
Shu string `orm:"shu" json:"shu"` // 属
|
||
Genus string `orm:"genus" json:"genus"` // Genus
|
||
SourceArea string `orm:"source_area" json:"sourceArea"` // 原产地
|
||
Source string `orm:"source" json:"source"` // 来源地
|
||
StudyPlot string `orm:"study_plot" json:"studyPlot"` // 释放地/实验地
|
||
ExperimentDate *gtime.Time `orm:"experiment_date" json:"experimentDate"` // 引进时间/实验时间
|
||
Selectivity string `orm:"selectivity" json:"selectivity"` // 专一性
|
||
FeedingHarm string `orm:"feeding_harm" json:"feedingHarm"` // 取食/危害阶段
|
||
FeedingPart string `orm:"feeding_part" json:"feedingPart"` // 取食/危害部位
|
||
AnswerIndicator string `orm:"answer_indicator" json:"answerIndicator"` // 响应指标
|
||
ReleaseRecord string `orm:"release_record" json:"releaseRecord"` // 释放记录
|
||
IsCreateGroup int `orm:"is_create_group" json:"isCreateGroup"` // 是否建群
|
||
FeedingStage string `orm:"feeding_stage" json:"feedingStage"` // 取食阶段
|
||
IsTarget int `orm:"is_target" json:"isTarget"` // 有无非目标影响
|
||
FeedingDate *gtime.Time `orm:"feeding_date" json:"feedingDate"` // 取食时间/活跃时间
|
||
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"` //
|
||
}
|