product_material_group.go
944 字节
package models
import (
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-manufacture/pkg/domain"
"time"
)
type ProductMaterialGroup struct {
tableName string `comment:"物料分组" pg:"manufacture.product_material_group"`
// 物料分组ID
ProductMaterialGroupId int `comment:"物料分组ID" pg:"pk:product_material_group_id"`
// 企业id
CompanyId int `comment:"企业id"`
// 组织ID
OrgId int `comment:"组织ID"`
// 父级ID
Pid int `comment:"父级ID"`
// 路径
// Path string `comment:"路径"`
// 物料分组名称
MaterialGroupName string `comment:"物料分组名称"`
// 物料分组编码
MaterialGroupNumber string `comment:"物料分组编码"`
// 创建时间
CreatedAt time.Time `comment:"创建时间"`
// 更新时间
UpdatedAt time.Time `comment:"更新时间"`
// 删除时间
DeletedAt time.Time `pg:",soft_delete" comment:"删除时间"`
// 扩展
Ext *domain.Ext `comment:"扩展"`
}