liujie
2 天以前 3ae5f86787af4dca085e3013802c29b20a2a9d20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.system.query;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.ruoyi.common.core.domain.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "产品介绍查询参数TSysProductIntroductionQuery")
public class TSysProductIntroductionQuery extends BasePage {
 
    @ApiModelProperty(value = "产品名称")
    private String productName;
 
    @ApiModelProperty(value = "展示类型 1=仅患者 2=仅诊所 3=患者和诊所")
    private Integer showType;
 
    @ApiModelProperty(value = "状态 1=上架 2=下架")
    private Integer status;
 
    @ApiModelProperty(value = "角色类型")
    private Integer roleType;
}