Files
lone-services/services/user/internal/dao/const.go
T
2026-09-02 09:47:34 +08:00

14 lines
282 B
Go

package dao
const (
StatusEnabled uint8 = 1
StatusDisabled uint8 = 2
CredentialTypePassword = "password"
CredentialTypeWecom = "wecom"
CredentialTypeOpenid = "openid"
// ExtraJsonEmpty MySQL JSON 列不能写空串,无扩展字段时用 {}
ExtraJsonEmpty = "{}"
)