feat: sale add create user

This commit is contained in:
zzw
2026-09-02 09:47:34 +08:00
parent ad4bc7de85
commit 540f74f9b7
39 changed files with 2023 additions and 282 deletions
+13
View File
@@ -0,0 +1,13 @@
package dao
const (
StatusEnabled uint8 = 1
StatusDisabled uint8 = 2
CredentialTypePassword = "password"
CredentialTypeWecom = "wecom"
CredentialTypeOpenid = "openid"
// ExtraJsonEmpty MySQL JSON 列不能写空串,无扩展字段时用 {}
ExtraJsonEmpty = "{}"
)