2025-08-07 18:40:59 +08:00

37 lines
1.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-07 10:19:19
// 生成路径: internal/app/businesses/model/entity/species_name.go
// 生成人gfast
// desc:
// company:云南奇讯科技有限公司
// ==========================================================================
package do
import (
"github.com/gogf/gf/v2/os/gtime"
"github.com/gogf/gf/v2/util/gmeta"
)
// SpeciesName is the golang structure for table species_name.
type SpeciesName struct {
gmeta.Meta `orm:"table:species_name, do:true"`
Id interface{} `orm:"id,primary" json:"id"` // 主键
SpeciesCode interface{} `orm:"species_code" json:"speciesCode"` // 物种编号
Name interface{} `orm:"name" json:"name"` // 物种名称
Content interface{} `orm:"content" json:"content"` // 物种名称内容
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"` // 数据核查日期
Remark interface{} `orm:"remark" json:"remark"` // 备注
AuditStatus interface{} `orm:"audit_status" json:"auditStatus"` //
AuditView interface{} `orm:"audit_view" json:"auditView"` //
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"` //
}