【更新】更新pg代码生成

This commit is contained in:
PandaGoAdmin
2022-08-19 17:58:02 +08:00
parent f0e235d22f
commit cf97d854d8
11 changed files with 231 additions and 2 deletions

15
pkg/config/jwt.go Normal file
View File

@@ -0,0 +1,15 @@
package config
import (
"github.com/XM-GO/PandaKit/biz"
)
type Jwt struct {
Key string `yaml:"key"`
ExpireTime int64 `yaml:"expire-time"` // 过期时间,单位分钟
}
func (j *Jwt) Valid() {
biz.IsTrue(j.Key != "", "config.yml之 [jwt.key] 不能为空")
biz.IsTrue(j.ExpireTime != 0, "config.yml之 [jwt.expire-time] 不能为空")
}