简单基于DDD重构,并实现机器文件及脚本管理

This commit is contained in:
meilin.huang
2021-05-08 18:00:33 +08:00
parent 50d0dbebb1
commit 5f684a0e48
111 changed files with 2781 additions and 735 deletions

View File

@@ -27,7 +27,7 @@ func CreateToken(userId uint64, username string) string {
// 使用自定义字符串加密 and get the complete encoded token as a string
tokenString, err := token.SignedString([]byte(JwtKey))
biz.BizErrIsNil(err, "token创建失败")
biz.ErrIsNil(err, "token创建失败")
return tokenString
}