feige
2024-08-22 5e2ebcceae4bc34b46370f2c10110cd72e7f4fba
zhang-content/src/main/java/com/ruoyi/domain/Meeting.java
@@ -32,17 +32,17 @@
     * 可容纳人数
     */
    @Excel(name = "可容纳人数")
    private int conPeople;
    private Integer conPeople;
    /**
     * 参与人数
     */
    @Excel(name = "参与人数")
    private int partPeople;
    private Integer partPeople;
    /**
     * 申请人
     */
    @Excel(name = "申请人")
    private int applyPerson;
    private String applyPerson;
    /**
     * 申请部门或家庭
     */
@@ -58,7 +58,7 @@
     * 结束时间
     */
    @Excel(name = "结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date endTime;
@@ -76,13 +76,13 @@
    /**
     * 是否摆放水牌
     */
    @Excel(name = "是否摆放水牌")
    private int isPlacebrand;
    @Excel(name = "是否摆放水牌(1:是 0:否)")
    private Integer isPlacebrand;
    /**
     * 联系人
     */
    @Excel(name = "联系人")
    private int connPerson;
    private String connPerson;
    /**
     * 联系电话
     */
@@ -91,12 +91,11 @@
    /**
     * 状态
     */
    @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;