feat(admin): add fa_smoke CRUD APIs with Chinese comments (#45)

This commit is contained in:
root
2026-03-10 17:29:36 +08:00
parent 2ddb2403e4
commit a4b466744c
4 changed files with 2073 additions and 0 deletions
File diff suppressed because it is too large Load Diff
+6
View File
@@ -18,6 +18,12 @@ var (
ErrMiniProgramAppIDUsed = errors.New("mini program app_id already exists")
ErrAdminUserNotFound = errors.New("admin user not found")
ErrMembershipRedeemCodeNotFound = errors.New("membership redeem code not found")
ErrSmokeLogNotFound = errors.New("smoke log not found")
ErrSmokeProfileNotFound = errors.New("smoke profile not found")
ErrSmokeAIAdviceNotFound = errors.New("smoke ai advice not found")
ErrSmokeAIUnlockNotFound = errors.New("smoke ai unlock not found")
ErrSmokeAINextNotFound = errors.New("smoke ai next smoke not found")
ErrSmokeMotivationNotFound = errors.New("smoke motivation quote not found")
ErrInvalidInput = errors.New("invalid input")
ErrPasswordPolicyViolation = errors.New("password policy violation")
)