This commit is contained in:
suyl
2021-07-19 18:44:29 +08:00
parent c31499ddb7
commit 7c952f112f
4 changed files with 20 additions and 13 deletions

View File

@@ -26,9 +26,9 @@ func GetApps(c *gin.Context) {
}
type AddAppParam struct {
Code string `json:"code" form:"code"` //手机验证码
Mobile string `json:"mobile" form:"mobile"` //手机号
Name string `json:"name" form:"name"` //应用名称
Code string `json:"code" form:"code" binding:"required"` //手机验证码
Mobile string `json:"mobile" form:"mobile" binding:"required"` //手机号
Name string `json:"name" form:"name" binding:"required"` //应用名称
}
//新建app POST