zky_mandate/internal/app/businesses/model/do/classifu_statuse.go
2025-08-07 18:40:59 +08:00

50 lines
3.0 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-07 14:57:37
// 生成路径: internal/app/businesses/model/entity/classify_statuse.go
// 生成人gfast
// desc:分类地位
// company:云南奇讯科技有限公司
// ==========================================================================
package do
import (
"github.com/gogf/gf/v2/os/gtime"
"github.com/gogf/gf/v2/util/gmeta"
)
// ClassifyStatuse is the golang structure for table classify_statuse.
type ClassifyStatuse struct {
gmeta.Meta `orm:"table:classify_statuse, do:true"`
Id interface{} `orm:"id,primary" json:"id"` //
SpeciesCode interface{} `orm:"species_code,primary" json:"speciesCode"` // 物种编码
Jie interface{} `orm:"jie" json:"jie"` // 界
Kingdom interface{} `orm:"kingdom" json:"kingdom"` // Kingdom
Men interface{} `orm:"men" json:"men"` // 门
Phylum interface{} `orm:"phylum" json:"phylum"` // Phylum
Gang interface{} `orm:"gang" json:"gang"` // 纲
ClassTitle interface{} `orm:"class_title" json:"classTitle"` // Class
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
Zhong interface{} `orm:"zhong" json:"zhong"` // Genus
Species interface{} `orm:"species" json:"species"` // Species
OtherInfo interface{} `orm:"other_info" json:"otherInfo"` // 其他分类信息
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"` //
}