zqy
5 天以前 b02beccf4567068cb47a3f1181a00039456c872d
zhang-content/src/main/java/com/ruoyi/domain/Meeting.java
@@ -32,12 +32,12 @@
     * 可容纳人数
     */
    @Excel(name = "可容纳人数")
    private int conPeople;
    private Integer conPeople;
    /**
     * 参与人数
     */
    @Excel(name = "参与人数")
    private int partPeople;
    private Integer partPeople;
    /**
     * 申请人
     */
@@ -76,8 +76,8 @@
    /**
     * 是否摆放水牌
     */
    @Excel(name = "是否摆放水牌")
    private int isPlacebrand;
    @Excel(name = "是否摆放水牌(1:是 0:否)")
    private Integer isPlacebrand;
    /**
     * 联系人
     */
@@ -91,8 +91,7 @@
    /**
     * 状态
     */
    @Excel(name = "状态")
    private int statu;
    private Integer statu;
    /**
     * 生成时间
     */
@@ -100,4 +99,4 @@
    private Date createTime;
}
}