This commit is contained in:
laodaming
2023-07-04 16:48:56 +08:00
parent 7e9cdbfb57
commit 31d22cda63
13 changed files with 590 additions and 14 deletions

View File

@@ -0,0 +1,5 @@
package constants
// 普通表中status状态
const STATUS_ON = 1
const STATUS_OFF = 0

16
constants/material.go Normal file
View File

@@ -0,0 +1,16 @@
package constants
// 材料类型
var MAP_MATERIAL = map[int64]string{
1: "paper",
2: "glass",
3: "塑料",
4: "牛皮纸",
5: "单层牛皮纸",
6: "双层牛皮纸",
7: "PET",
8: "瓦楞纸",
9: "厚牛皮纸",
10: "卡纸",
11: "PP",
}