| | |
| | | * 可容纳人数
|
| | | */
|
| | | @Excel(name = "可容纳人数")
|
| | | private int conPeople;
|
| | | private Integer conPeople;
|
| | | /**
|
| | | * 参与人数
|
| | | */
|
| | | @Excel(name = "参与人数")
|
| | | private int partPeople;
|
| | | private Integer partPeople;
|
| | | /**
|
| | | * 申请人
|
| | | */
|
| | |
| | | * 结束时间
|
| | | */
|
| | | @Excel(name = "结束时间")
|
| | | @JsonFormat(pattern = "yyyy-MM-dd")
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
| | | private Date endTime;
|
| | |
|
| | |
|
| | |
| | | /**
|
| | | * 是否摆放水牌
|
| | | */
|
| | | @Excel(name = "是否摆放水牌")
|
| | | private int isPlacebrand;
|
| | | @Excel(name = "是否摆放水牌(1:是 0:否)")
|
| | | private Integer isPlacebrand;
|
| | | /**
|
| | | * 联系人
|
| | | */
|
| | |
| | | /**
|
| | | * 状态
|
| | | */
|
| | | @Excel(name = "状态")
|
| | | private int statu;
|
| | | private Integer statu;
|
| | | /**
|
| | | * 生成时间
|
| | | */
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
| | | private Date createTime;
|
| | |
|
| | |
|
| | | }
|
| | | } |