product_calendar.go
1.4 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
package models
import (
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-manufacture/pkg/domain"
"time"
)
type ProductCalendar struct {
tableName string `comment:"工厂日历" pg:"manufacture.product_calendar,alias:product_calendar"`
// 工厂日历ID
ProductCalendarId int `comment:"工厂日历ID" pg:"pk:product_calendar_id"`
// 企业id
CompanyId int `comment:"企业id"`
// 组织ID
OrgId int `comment:"组织ID"`
// 工作位置
WorkStation *domain.WorkStation `comment:"工作位置"`
// 上班班次 1:全天 2:白班 4:中班 8:夜班
WorkOn int `comment:"上班班次 1:全天 2:白班 4:中班 8:夜班"`
// 日历选择
CalendarSelected []string `comment:"日历选择"`
// 上岗时间
InWorkAt string `comment:"上岗时间"`
// 下岗时间
OutWorkAt string `comment:"下岗时间"`
// 休息时间 (单位 h)
BreakTime float64 `comment:"休息时间 (单位 h)"`
// 工时 (单位 h)
WorkTime float64 `comment:"工时 (单位 h)"`
// 创建时间
CreatedAt time.Time `comment:"创建时间"`
// 更新时间
UpdatedAt time.Time `comment:"更新时间"`
// 删除时间
DeletedAt time.Time `pg:",soft_delete" comment:"删除时间"`
// 扩展数据
Ext *domain.Ext `comment:"扩展数据"`
// 休息时间周期列表
BreakTimePeriods []*domain.ProductCalendarBreakTimePeriod `comment:"休息时间周期列表"`
}