Files
lone-services/services/user/internal/dao/const.go
T
2026-09-03 17:11:34 +08:00

32 lines
598 B
Go

package dao
const (
StatusEnabled uint8 = 1
StatusDisabled uint8 = 2
CredentialTypePassword = "password"
CredentialTypeWecom = "wecom"
CredentialTypeOpenid = "openid"
CredentialTypeUnionid = "unionid"
GrantTypeOpenid = "openid"
GrantTypePassword = "password"
GrantTypeSms = "sms"
SmsSceneLogin int32 = 1
SmsSceneResetPassword int32 = 2
SmsRateLimitSeconds = 60
SmsCodeLength = 6
TypeSale uint8 = 1
TypeStore uint8 = 2
TypeUser uint8 = 3
SubjectTypeSale = "sale"
SubjectTypeStore = "store"
SubjectTypeUser = "user"
ExtraJsonEmpty = "{}"
)