...
|
...
|
@@ -69,7 +69,7 @@ type TagCreateRequest struct { |
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
}
|
|
|
|
|
|
type TagCreateResponse struct {
|
...
|
...
|
@@ -78,11 +78,11 @@ type TagCreateResponse struct { |
|
|
|
|
|
type TagEditRequest struct {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
CompanyId int64 `json:"-"`
|
|
|
Image string `json:"image"`
|
|
|
Name string `json:"name"` // 标签名称
|
|
|
Group string `json:"group"` // 标签分类
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
Remark string `json:"remark,optional"` // 备注
|
|
|
}
|
|
|
|
|
|
type TagEditResponse struct {
|
...
|
...
|
@@ -91,6 +91,7 @@ type TagEditResponse struct { |
|
|
|
|
|
type TagGetRequest struct {
|
|
|
Id int64 `path:"id"`
|
|
|
CompanyId int64 `path:"-"`
|
|
|
}
|
|
|
|
|
|
type TagGetResponse struct {
|
...
|
...
|
@@ -104,10 +105,14 @@ type TagGetResponse struct { |
|
|
type TagListRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
CompanyId int64 `json:"-"`
|
|
|
TagName string `json:"tagName,optional"`
|
|
|
Group string `json:"group,optional"`
|
|
|
Remark string `json:"remark,optional"`
|
|
|
}
|
|
|
|
|
|
type TagListResponse struct {
|
|
|
Total int `json:"total"`
|
|
|
Total int64 `json:"total"`
|
|
|
List []TagItem `json:"list"`
|
|
|
}
|
|
|
|
...
|
...
|
@@ -122,12 +127,15 @@ type TagItem struct { |
|
|
|
|
|
type TagDeleteRequest struct {
|
|
|
Id int64 `path:"id"`
|
|
|
CompanyId int64 `path:"-"`
|
|
|
}
|
|
|
|
|
|
type TagDeleteResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type MiniUserLoginRequest struct {
|
|
|
LoginType string `json:"loginType"` // 登录类型 wechat-login whchat-phone-login phone-password-login phone-smscode-login
|
|
|
WechatAuthCode string `json:"wechatAuthcode,optional"` // 微信登录 授权码
|
...
|
...
|
|