|  |  | 
 |  |  | import java.io.Serializable; | 
 |  |  | import java.time.LocalDateTime; | 
 |  |  | import java.util.Date; | 
 |  |  |  | 
 |  |  | import com.ruoyi.framework.aspectj.lang.annotation.Excel; | 
 |  |  | import lombok.Data; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  | 
 |  |  |      * 会议室名称 | 
 |  |  |      */ | 
 |  |  |     @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; | 
 |  |  |  | 
 |  |  |     /** |