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
| package cn.lili.modules.system.entity.dto;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * 分销配置
| *
| * @author Chopper
| * @since 2020/12/23 18:35
| */
| @Data
| public class DistributionSetting implements Serializable {
|
| private static final long serialVersionUID = 2099524659914361438L;
|
| /**
| * 是否开启分销
| */
| private Boolean isOpen;
| /**
| * 分销关系绑定天数
| */
| private Integer distributionDay;
|
| }
|
|