doum
14 小时以前 bcad3fe1b888ae11d437f6558b7974cfa30cfb2e
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.doumee.dao.system.dto;
 
import com.alibaba.fastjson.JSONObject;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/3/23 9:50
 */
@Data
@ApiModel("系统订单配置")
public class PlatformConfigDTO {
 
    @ApiModelProperty(value = "注册积分奖励状态  0开启 1关闭")
    private Integer regIntegralRewardStatus;
    @ApiModelProperty(value = "邀请好友积分奖励状态  0开启 1关闭")
    private Integer shareIntegralRewardStatus;
    @ApiModelProperty(value = "注册优惠券奖励状态  0开启 1关闭")
    private Integer regCouponRewardStatus;
    @ApiModelProperty(value = "邀请好友优惠券奖励状态  0开启 1关闭")
    private Integer shareCouponRewardStatus;
 
    @ApiModelProperty(value = "注册积分奖励数量")
    private BigDecimal regIntegralReward;
    @ApiModelProperty(value = "邀请好友积分奖励数量")
    private BigDecimal shareIntegralReward;
 
    @ApiModelProperty(value = "注册优惠券奖励集合")
    private List<JSONObject> regCouponRewardList;
    @ApiModelProperty(value = "邀请好友优惠券奖励集合")
    private List<JSONObject> shareCouponRewardList;
 
    @ApiModelProperty(value = "消费返积分-返用户积分状态 0开启 1关闭")
    private Integer returnMemberIntegralStatus;
    @ApiModelProperty(value = "消费返积分-返经销商积分状态 0开启 1关闭")
    private Integer returnShopIntegralStatus;
    @ApiModelProperty(value = "消费返积分-返用户积分数量")
    private BigDecimal returnMemberIntegral;
    @ApiModelProperty(value = "消费返积分-返经销商积分数量")
    private BigDecimal returnShopIntegral;
    @ApiModelProperty(value = "合计优惠承担比例(%)")
    private BigDecimal totalRate;
 
 
}