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