|
|
@@ -5,6 +5,7 @@ type PageEmoticonReq struct { |
|
|
|
PageSize int `json:"page_size"` |
|
|
|
State int `json:"state"` //状态 |
|
|
|
Memo string `json:"memo" example:"备注"` |
|
|
|
Name string `json:"name"` // 表情名称 |
|
|
|
} |
|
|
|
|
|
|
|
type PageEmoticonResp struct { |
|
|
@@ -15,9 +16,9 @@ type PageEmoticonResp struct { |
|
|
|
Id int64 `json:"id"` //记录id |
|
|
|
Name string `json:"name" example:"名称"` |
|
|
|
ImgUrl string `json:"img_url" example:"图片地址"` |
|
|
|
Sort int `json:"Sort"` // 排序 |
|
|
|
State int `json:"state"` // 状态0关闭,1开启 |
|
|
|
Memo string `json:"memo" example:"备注"` // 备注 |
|
|
|
Sort int `json:"Sort"` // 排序 |
|
|
|
State int `json:"state"` // 状态0关闭,1开启 |
|
|
|
Memo string `json:"memo" example:"备注"` // 备注 |
|
|
|
CreateAt string `json:"create_at" example:"创建时间"` // 创建时间 |
|
|
|
UpdateAt string `json:"update_at" example:"更新时间"` // 更新时间 |
|
|
|
} `json:"list"` |
|
|
@@ -27,7 +28,7 @@ type AddEmoticonReq struct { |
|
|
|
Name string `json:"name" example:"名称"` |
|
|
|
ImgUrl string `json:"img_url" example:"图片地址"` |
|
|
|
Memo string `json:"memo" example:"备注"` // 备注 |
|
|
|
Sort int `json:"sort"` // 排序 |
|
|
|
Sort int `json:"sort"` // 排序 |
|
|
|
} |
|
|
|
|
|
|
|
type SetEmoticonStateReq struct { |
|
|
@@ -40,7 +41,7 @@ type UpdateEmoticonReq struct { |
|
|
|
Name string `json:"name" example:"名称"` |
|
|
|
ImgUrl string `json:"img_url" example:"图片地址"` |
|
|
|
Memo string `json:"memo" example:"备注"` // 备注 |
|
|
|
Sort int `json:"sort"` // 排序 |
|
|
|
Sort int `json:"sort"` // 排序 |
|
|
|
} |
|
|
|
|
|
|
|
type DeleteEmoticonReq struct { |
|
|
|