From 1003bcc738159a9dd0dbc0934279ed94a1a72535 Mon Sep 17 00:00:00 2001
From: yinbentan <yinbentan@live.com>
Date: 星期五, 28 六月 2024 16:31:30 +0800
Subject: [PATCH] swagger信息重新生产

---
 constvar/const.go |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/constvar/const.go b/constvar/const.go
index c128d57..b7391e2 100644
--- a/constvar/const.go
+++ b/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
+}

--
Gitblit v1.8.0