xiaoyi
5 天以前 c9d4ba37c1f681b12e24014013fa9a28734bad42
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 cn.iocoder.yudao.module.mes.controller.admin.pd.basedata.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
@Schema(description = "管理后台 - 优惠策略分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class MesPdDiscountPolicyPageReqVO extends PageParam {
 
    @Schema(description = "策略名称")
    private String name;
 
    @Schema(description = "策略类型(1折扣/2立减)", example = "1")
    private Integer policyType;
 
    @Schema(description = "启用状态(1启用/0禁用)", example = "1")
    private Integer status;
 
}