修改了优惠卷的使用

This commit is contained in:
2024-08-07 10:25:18 +08:00
parent f3833ee5d5
commit a38611011d
8 changed files with 47 additions and 19 deletions
+2 -2
View File
@@ -14,6 +14,6 @@ type LoginWx struct {
// LoginPhone 手机号登录
type LoginPhone struct {
Mobile string `json:"mobile" form:"mobile" label:"手机号" validate:"required"`
Code string `json:"code" form:"code" label:"手机号" validate:"required"`
Source int `json:"source" form:"source" label:"来源" validate:"required"` // 1app 2:公众号
Code string `json:"code" form:"code" label:"验证码" validate:"required"`
Source int `json:"source" form:"source" label:"来源" validate:"required"` // 1app 2:公众号
}