xuhy
6 天以前 da35ec86396438a26a200768f8d0d1ca5458b820
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hollywood.manage.query;
 
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 TInformationQuery extends BasePage {
 
    @ApiModelProperty(value = "资讯标题")
    private String informationTitle;
 
    @ApiModelProperty(value = "资讯类型 1=全球影视资讯 2=非遗资讯")
    private Integer informationType;
 
}