product_plan.go
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package models
import (
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-manufacture/pkg/domain"
"time"
)
type ProductPlan struct {
tableName string `comment:"生产计划" pg:"manufacture.product_plan"`
// 生产计划ID
ProductPlanId int `comment:"生产计划ID" pg:"pk:product_plan_id"`
// 企业id
CompanyId int `comment:"企业id"`
// 组织ID
OrgId int `comment:"组织ID"`
// 批号
BatchNumber string `comment:"批号"`
// 生产日期
ProductDate time.Time `comment:"生产日期"`
// 车间
Workshop *domain.Workshop `comment:"车间"`
// 上班班次 1:全天 2:白班 4:中班 8:夜班
WorkOn int `comment:"上班班次 1:全天 2:白班 4:中班 8:夜班"`
// 机台 (A、B、C、D 区分机器大小)
Machine string `comment:"机台 (A、B、C、D 区分机器大小)"`
// 计划的产品名称
PlanProductName string `comment:"计划的产品名称"`
// 计划投入
PlanDevoted *domain.UnitQuantity `comment:"计划投入"`
// 计划状态 (1:上线 2:下线 默认下线)
PlanStatus int `comment:"计划状态 (1:上线 2:下线 默认下线)"`
// 工作位置
WorkStation *domain.WorkStation `comment:"工作位置"`
// 备注
Remark string `comment:"备注"`
// 创建时间
CreatedAt time.Time `comment:"创建时间"`
// 更新时间
UpdatedAt time.Time `comment:"更新时间"`
// 删除时间
DeletedAt time.Time `pg:",soft_delete" comment:"删除时间"`
// 扩展数据
Ext *domain.Ext `comment:"扩展数据"`
}