hotime/example/app/init.go
2021-12-16 13:24:31 +08:00

30 lines
636 B
Go

package app
import (
. "../../../hotime"
. "../../../hotime/common"
)
// Project 管理端项目
var Project = Proj{
//"user": UserCtr,
"product_spot_check": product_spot_checkCtr,
"product": productCtr,
"admin": adminCtr,
"sms": Sms,
"material": materialCtr,
"material_inout": material_inoutCtr,
"produce_product": produce_productCtr,
"produce": produceCtr,
"product_line": product_lineCtr,
}
//生成随机码的4位随机数
func getCode() string {
//res := ""
//for i := 0; i < 4; i++ {
res := ObjToStr(RandX(1000, 9999))
//}
return res
}