38 lines
2.4 KiB
Go
38 lines
2.4 KiB
Go
|
// ==========================================================================
|
|||
|
// GFast自动生成model entity操作代码。
|
|||
|
// 生成日期:2023-10-07 16:08:10
|
|||
|
// 生成路径: internal/app/system/model/entity/xiangmuhuafenbiao.go
|
|||
|
// 生成人:gfast
|
|||
|
// desc:项目划分
|
|||
|
// company:云南奇讯科技有限公司
|
|||
|
// ==========================================================================
|
|||
|
|
|||
|
package do
|
|||
|
|
|||
|
import (
|
|||
|
"github.com/gogf/gf/v2/os/gtime"
|
|||
|
"github.com/gogf/gf/v2/util/gmeta"
|
|||
|
)
|
|||
|
|
|||
|
// Xiangmuhuafenbiao is the golang structure for table xiangmuhuafenbiao.
|
|||
|
type Xiangmuhuafenbiao struct {
|
|||
|
gmeta.Meta `orm:"table:xiangmuhuafenbiao, do:true"`
|
|||
|
Id interface{} `orm:"id,primary" json:"id"` //
|
|||
|
Danweigongcheng interface{} `orm:"danweigongcheng,primary" json:"danweigongcheng"` // 单位 工程
|
|||
|
Zidanweigongcheng interface{} `orm:"zidanweigongcheng,primary" json:"zidanweigongcheng"` // 子单位工程
|
|||
|
Fenbugongcheng interface{} `orm:"fenbugongcheng,primary" json:"fenbugongcheng"` // 分部 工程
|
|||
|
Zifenbugongcheng interface{} `orm:"zifenbugongcheng,primary" json:"zifenbugongcheng"` // 子分部工程
|
|||
|
Fenxianggongcheng interface{} `orm:"fenxianggongcheng,primary" json:"fenxianggongcheng"` // 分项 工程
|
|||
|
Jianyanpi interface{} `orm:"jianyanpi,primary" json:"jianyanpi"` // 检验批
|
|||
|
Name interface{} `orm:"name,primary" json:"name"` // 工 程 项 目 名 称
|
|||
|
Zhixingbiaohao interface{} `orm:"zhixingbiaohao,primary" json:"zhixingbiaohao"` // 执行表号
|
|||
|
Json interface{} `orm:"json" json:"json"` // json数据文件路径
|
|||
|
PrintStatus interface{} `orm:"print_status,primary" json:"printStatus"` // 打印状态
|
|||
|
ProjectId interface{} `orm:"project_id,primary" json:"projectId"` // 项目id
|
|||
|
CreateBy interface{} `orm:"create_by,primary" json:"createBy"` // 创建人
|
|||
|
UpdateBy interface{} `orm:"update_by,primary" json:"updateBy"` // 更新人
|
|||
|
CreateddAt *gtime.Time `orm:"createdd_at" json:"createddAt"` // 创建时间
|
|||
|
UpdatedAt *gtime.Time `orm:"updated_at" json:"updatedAt"` // 更新时间
|
|||
|
DeletedAt *gtime.Time `orm:"deleted_at" json:"deletedAt"` // 删除时间
|
|||
|
}
|