| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.collaborativeApproval.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * ä¼è®®å®¤è¡¨ |
| | | * @TableName meeting_room |
| | | */ |
| | | @TableName(value ="meeting_room") |
| | | @Data |
| | | public class MeetingRoom implements Serializable { |
| | | /** |
| | | * ä¼è®®å®¤ID |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * ä¼è®®å®¤åç§° |
| | | */ |
| | | @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; |
| | | |
| | | /** |
| | | * 夿³¨ |
| | | */ |
| | | @TableField(value = "remark") |
| | | private String remark; |
| | | |
| | | /** |
| | | * å建è
|
| | | */ |
| | | @TableField(value = "create_user" ,fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * å建æ¶é´ |
| | | */ |
| | | @TableField(value = "create_time",fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | /** |
| | | * æ´æ°è
|
| | | */ |
| | | @TableField(value = "update_user",fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | |
| | | /** |
| | | * æ´æ°æ¶é´ |
| | | */ |
| | | @TableField(value = "update_time",fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | /** |
| | | * ç§æ·ID |
| | | */ |
| | | @TableField(value = "tenant_id",fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | } |