Files
zmkgC/internal/app/system/model/entity/xiangmuhuafenbiao.go
2025-07-07 20:11:59 +08:00

38 lines
2.3 KiB
Go
Raw Permalink 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操作代码。
// 生成日期2023-10-07 16:08:10
// 生成路径: internal/app/system/model/entity/xiangmuhuafenbiao.go
// 生成人gfast
// desc:项目划分
// company:云南奇讯科技有限公司
// ==========================================================================
package entity
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"`
Id int `orm:"id,primary" json:"id"` //
Danweigongcheng string `orm:"danweigongcheng" json:"danweigongcheng"` // 单位 工程
Zidanweigongcheng string `orm:"zidanweigongcheng" json:"zidanweigongcheng"` // 子单位工程
Fenbugongcheng string `orm:"fenbugongcheng" json:"fenbugongcheng"` // 分部 工程
Zifenbugongcheng string `orm:"zifenbugongcheng" json:"zifenbugongcheng"` // 子分部工程
Fenxianggongcheng string `orm:"fenxianggongcheng" json:"fenxianggongcheng"` // 分项 工程
Jianyanpi string `orm:"jianyanpi" json:"jianyanpi"` // 检验批
Name string `orm:"name" json:"name"` // 工 程 项 目 名 称
Zhixingbiaohao string `orm:"zhixingbiaohao" json:"zhixingbiaohao"` // 执行表号
Json string `orm:"json" json:"json"` // json数据文件路径
PrintStatus int `orm:"print_status" json:"printStatus"` // 打印状态
ProjectId int `orm:"project_id" json:"projectId"` // 项目id
CreateBy string `orm:"create_by" json:"createBy"` // 创建人
UpdateBy string `orm:"update_by" 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"` // 删除时间
}