12345678910111213141516171819202122232425262728293031323334353637 |
- package bizhi
- import "duoduo/models/mysqlBz"
- //随机获取图片请求参数
- type RoundPictureResponse struct {
- mysqlBz.BiZhi
- Cover1 string `json:"Cover1"`
- Cover string `json:"Cover"`
- CoverHeight string `json:"CoverHeight"`
- CoverWidth string `json:"CoverWidth"`
- Loaded bool `json:"loaded"`
- }
- //图片标签
- type PictureLabelRequest struct {
- Label string `json:"label"`
- }
- //图片标签更新
- type PictureLabelUpdateRequest struct {
- Id int `json:"id"`
- Label string `json:"label"`
- }
- //图片id
- type PictureGroupRequest struct {
- Id int `json:"id"`
- Label string `json:"label"`
- OpenId string `json:"openId"`
- }
- type SearchRequest struct {
- Label string `json:"label"`
- PageSize int `json:"pageSize"`
- PageIndex int `json:"pageIndex"`
- }
|