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

56 lines
3.1 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操作代码。
// 生成日期2023-10-07 16:08:10
// 生成路径: internal/app/system/model/xiangmuhuafenbiao.go
// 生成人gfast
// desc:项目划分
// company:云南奇讯科技有限公司
// ==========================================================================
package model
import (
"github.com/gogf/gf/v2/os/gtime"
"github.com/gogf/gf/v2/util/gmeta"
)
// XiangmuhuafenbiaoInfoRes is the golang structure for table xiangmuhuafenbiao.
type XiangmuhuafenbiaoInfoRes struct {
gmeta.Meta `orm:"table:xiangmuhuafenbiao"`
Id int64 `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 int64 `orm:"print_status" json:"printStatus"` // 打印状态
ProjectId int64 `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"` // 删除时间
}
type XiangmuhuafenbiaoListRes struct {
Id int64 `json:"id"`
Danweigongcheng string `json:"danweigongcheng"`
Zidanweigongcheng string `json:"zidanweigongcheng"`
Fenbugongcheng string `json:"fenbugongcheng"`
Zifenbugongcheng string `json:"zifenbugongcheng"`
Fenxianggongcheng string `json:"fenxianggongcheng"`
Jianyanpi string `json:"jianyanpi"`
Name string `json:"name"`
Zhixingbiaohao string `json:"zhixingbiaohao"`
Json string `json:"json"`
PrintStatus int64 `json:"printStatus"`
ProjectId int64 `json:"projectId"`
CreateBy string `json:"createBy"`
UpdateBy string `json:"updateBy"`
CreateddAt *gtime.Time `json:"createddAt"`
}