initial common.go in dao module

This commit is contained in:
zchengo
2023-01-24 19:50:04 +08:00
parent b86d67a41d
commit bb23c65370
+17
View File
@@ -0,0 +1,17 @@
package dao
const (
// 数据库表名
USER = "user"
CUSTOMER = "customer"
CONTRACT = "contract"
PRODUCT = "product"
SUBSCRIBE = "subscribe"
NOTICE = "notice"
MAIL_CONFIG = "mail_config"
// 空值
NumberNull = 0
StringNull = ""
)