| | |
| | | import java.time.LocalDateTime; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | * 会议主题 |
| | | */ |
| | | @TableField(value = "title") |
| | | @Excel(name = "会议主题") |
| | | private String title; |
| | | |
| | | /** |
| | | * 主持人 |
| | | */ |
| | | @TableField(value = "host") |
| | | @Excel(name = "主持人") |
| | | private String host; |
| | | |
| | | /** |
| | |
| | | * 参会人数 |
| | | */ |
| | | @TableField(value = "participants") |
| | | @Excel(name = "参会人数") |
| | | private Integer participants; |
| | | |
| | | /** |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |