luodangjia
2024-12-10 ee7ce5d1cbf80bee0a15c1e5bc5eaa30858d812b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.hollywood.manage.query;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.hollywood.common.pojo.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "短剧查询Query")
public class TShortPlayQuery extends BasePage {
 
    @ApiModelProperty(value = "短剧题材id")
    @TableField("themeId")
    private Long themeId;
 
    @ApiModelProperty(value = "短剧类型id")
    @TableField("typeId")
    private Long typeId;
 
    @ApiModelProperty(value = "短剧名称")
    @TableField("shortPlayName")
    private String shortPlayName;
 
}