maven
5 天以前 2ed03e83ce1e513632a188de78190e79a85636b9
src/main/java/com/ruoyi/collaborativeApproval/pojo/MeetingRoom.java
@@ -5,6 +5,8 @@
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
/**
@@ -24,30 +26,35 @@
     * 会议室名称
     */
    @TableField(value = "name")
    @Excel(name = "会议室名称")
    private String name;
    /**
     * 位置
     */
    @TableField(value = "location")
    @Excel(name = "位置")
    private String location;
    /**
     * 容纳人数
     */
    @TableField(value = "capacity")
    @Excel(name = "容纳人数")
    private Integer capacity;
    /**
     * 设备配置(逗号分隔)
     */
    @TableField(value = "equipment")
    @Excel(name = "设备配置")
    private String equipment;
    /**
     * 状态(1:启用 0:禁用)
     */
    @TableField(value = "status")
    @Excel(name = "状态", readConverterExp = "1=启用,0=禁用")
    private Integer status;
    /**