product_group.go
1.1 KB
package models
import (
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-manufacture/pkg/domain"
"time"
)
type ProductGroup struct {
tableName string `comment:"生产班组" pg:"manufacture.product_group,alias:product_group"`
// 生产小组ID
ProductGroupId int `comment:"生产小组ID" pg:"pk:product_group_id"`
// 企业id
CompanyId int `comment:"企业id"`
// 组织ID
OrgId int `comment:"组织ID"`
// 班组名称
GroupName string `comment:"班组名称"`
// 班组长
GroupLeader *domain.User `comment:"班组长"`
// 帮组成员列表
GroupMembers []*domain.User `comment:"帮组成员列表"`
// 上班班次 1:全天 2:白班 4:中班 8:夜班
WorkOn int `comment:"上班班次 1:全天 2:白班 4:中班 8:夜班"`
// 工作位置
WorkStation *domain.WorkStation `comment:"工作位置"`
// 创建时间
CreatedAt time.Time `comment:"创建时间"`
// 更新时间
UpdatedAt time.Time `comment:"更新时间"`
// 删除时间
DeletedAt time.Time `pg:",soft_delete" comment:"删除时间"`
// 扩展数据
Ext *domain.Ext `comment:"扩展数据"`
}