package com.xzx.gc.model.admin; import com.xzx.gc.entity.RebateRule; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.io.Serializable; import java.util.List; /* * 红包发放规则表 * gen by Spring Boot2 Admin 2019-12-11 */ @Data public class XzxUserRebateRuleModel{ Integer id ; @ApiModelProperty(value="规则名称",required=true) String ruleName ; //发放开始时间 @ApiModelProperty(value="发放开始时间",required=true) String startTime ; //发放结束时间 @ApiModelProperty(value="发放结束时间",required=true) private String endTime ; //开关0:正常,1:已经关闭 @ApiModelProperty(value="开关0:关闭,1:正常",required=true) private Short status ; //规则创建时间 @ApiModelProperty(value="规则创建时间",required=true) private String createTime ; Integer delFlag ; @ApiModelProperty(value="阶梯价格列表",required=true) List rulePriceList; @ApiModelProperty(value="每台家电折算重量",required=true) String conversionPerUnit; @ApiModelProperty(value="每台家电折算重量启用(0:不启用,1:启用)",required=true) String conversionPerUnitFlag; @ApiModelProperty(value="适用物品类型1:废纸,2:杂纸(多选用逗号隔开)3:人工审核,4:自动审核",required=true) String productType ; List weightRateList; @ApiModelProperty(value="提成规则",required=true) List royaltyRuleList; String packageId; String timing; String partnerId; }