50 lines
3.0 KiB
Go
50 lines
3.0 KiB
Go
// ==========================================================================
|
||
// GFast自动生成model entity操作代码。
|
||
// 生成日期:2025-08-07 14:57:37
|
||
// 生成路径: internal/app/businesses/model/entity/classify_statuse.go
|
||
// 生成人:gfast
|
||
// desc:分类地位
|
||
// company:云南奇讯科技有限公司
|
||
// ==========================================================================
|
||
|
||
package entity
|
||
|
||
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"`
|
||
Id int `orm:"id,primary" json:"id"` //
|
||
SpeciesCode string `orm:"species_code,primary" json:"speciesCode"` // 物种编码
|
||
Jie string `orm:"jie" json:"jie"` // 界
|
||
Kingdom string `orm:"kingdom" json:"kingdom"` // Kingdom
|
||
Men string `orm:"men" json:"men"` // 门
|
||
Phylum string `orm:"phylum" json:"phylum"` // Phylum
|
||
Gang string `orm:"gang" json:"gang"` // 纲
|
||
ClassTitle string `orm:"class_title" json:"classTitle"` // Class
|
||
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
|
||
Zhong string `orm:"zhong" json:"zhong"` // Genus
|
||
Species string `orm:"species" json:"species"` // Species
|
||
OtherInfo string `orm:"other_info" json:"otherInfo"` // 其他分类信息
|
||
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"` //
|
||
}
|