zky_mandate/internal/app/businesses/model/do/naturalEnemyInsect.go

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