yinbentan
2024-06-29 da154e5c758c3b67202390debdc5331a8f68c685
constvar/const.go
@@ -316,3 +316,24 @@
)
const DoMonthStatsToken = "Eoh2ZAUJjtbmu0TBkc3dq7MPCpL4riw5NVxOfgXYlKvHF6sR"
type SystemConfigType int
const (
   SystemConfigTypeInventoryCutOffPoint SystemConfigType = 1 //库存结算时间点
)
type MiniDictType int
const (
   TransferType MiniDictType = iota + 1 // 调拨类型
   StorageType                          // 入库类型
   StockoutType                         // 出库类型
)
func (t MiniDictType) Valid() bool {
   if t <= 0 {
      return false
   }
   return true
}