| | |
| | | package cn.lili.modules.lmk.domain.query; |
| | | |
| | | import cn.lili.base.AbsQuery; |
| | | import cn.lili.modules.lmk.enums.general.VideoTypeEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty("作者id") |
| | | private String authorId; |
| | | |
| | | /** |
| | | * 是否是本人查询 |
| | | */ |
| | | @ApiModelProperty(hidden = true) |
| | | private Boolean authorSelf; |
| | | |
| | | /** |
| | | * @see cn.lili.modules.lmk.enums.general.VideoTypeEnum |
| | | */ |
| | | @ApiModelProperty("视频类型:视频、大健康、神厨,默认不传查视频") |
| | | private String videoType = VideoTypeEnum.VIDEO.getValue(); |
| | | } |
| | | |