product_calendar.go 1.2 KB
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:"日历选择" pg:",array"`
	// 上岗时间
	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:"删除时间"`
}