xiaoyong931011
2023-10-10 18fb219ee5ed5c267665b4c84d2306eea25349f6
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
package cc.mrbird.febs.mall.vo;
 
import lombok.Data;
 
import java.util.Date;
@Data
public class AdminGroupInfoVo {
 
    private Long id;
 
    private String name;
 
    private String phone;
 
    private String nickName;
 
    /**
     * 是否使用机器人 1:是  0:否
     */
    private Integer useRobot;
    /**
     * 金额下限
     */
    private Integer amountMin;
    /**
     * 金额上限
     */
    private Integer amountMax;
    /**
     * 红包个数
     */
    private Integer redBagCnt;
    /**
     * 模式类型 1:简单模式-正常模式 2:困难模式
     */
    private Integer modelType;
}