liujiandao
2024-04-19 04e3c197ea38fe242769057276914bf78c93b3ff
constvar/const.go
@@ -70,3 +70,19 @@
   OutsourcingSupplierRange                               //供货范围
   SalaryType                                             //嘉联薪资类型
)
// ShiftType 班次类型
type ShiftType string
const (
   ShiftTypeRegular ShiftType = "regular" // 固定班次
   ShiftTypeCycle   ShiftType = "cycle"   // 循环班次
)
// ResourceType 订单类型
type ResourceType int
const (
   ResourceTypeDevice ResourceType = iota + 1 // 设备
   ResourceTypeWorker                         // 人员
)