package cc.mrbird.febs.mall.vo; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import java.util.Date; @Data public class AdminGroupVo { private Long id; private String name; private String phone; private String nickName; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date createTime; /** * 是否使用机器人 1:是 0:否 */ private Integer useRobot; /** * 金额下限 */ private Integer amountMin; /** * 金额上限 */ private Integer amountMax; /** * 红包个数 */ private Integer redBagCnt; /** * 模式类型 1:简单模式-正常模式 2:困难模式 */ private Integer modelType; /** * 机器人是否自动发动红包 1:是 0:否 */ private Integer autoSend; }