39 lines
2.0 KiB
Go
39 lines
2.0 KiB
Go
// ==========================================================================
|
||
// GFast自动生成model entity操作代码。
|
||
// 生成日期:2025-08-08 15:02:58
|
||
// 生成路径: internal/app/businesses/model/entity/domesti_distribuion.go
|
||
// 生成人:gfast
|
||
// desc:国内分布
|
||
// company:云南奇讯科技有限公司
|
||
// ==========================================================================
|
||
|
||
package do
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
"github.com/gogf/gf/v2/util/gmeta"
|
||
)
|
||
|
||
// DomestiDistribuion is the golang structure for table domesti_distribuion.
|
||
type DomestiDistribuion struct {
|
||
gmeta.Meta `orm:"table:domesti_distribuion, do:true"`
|
||
Id interface{} `orm:"id,primary" json:"id"` //
|
||
SpeciesCode interface{} `orm:"species_code" json:"speciesCode"` // 物种编码
|
||
Province interface{} `orm:"province" json:"province"` // 所属省区
|
||
City interface{} `orm:"city" json:"city"` // 所属地级州市
|
||
County interface{} `orm:"county" json:"county"` // 所属区县
|
||
Year interface{} `orm:"year" json:"year"` // 发现年份
|
||
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"` //
|
||
}
|