| | |
| | | package com.ruoyi.domain;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import com.fasterxml.jackson.annotation.JsonFormat;
|
| | | import lombok.Data;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | @Data
|
| | | @TableName("meeting_ratify")
|
| | | public class MeetingRatify {
|
| | | @TableName("meeting_statistic")
|
| | | public class MeetingStatistic {
|
| | | @TableId(value = "id", type = IdType.AUTO)
|
| | | private Long id;
|
| | |
|
| | | private int familyId;
|
| | |
|
| | | /**
|
| | | * 家庭号
|
| | | */
|
| | | private Long familyId;
|
| | | /**
|
| | | * 使用时间
|
| | | */
|
| | | private String useTime;
|
| | |
|
| | | /**
|
| | | * 会议室名称
|
| | | */
|
| | | private String conferenceRoom;
|
| | |
|
| | | /**
|
| | | * 标题
|
| | | */
|
| | | private String title;
|
| | |
|
| | | private int applyPerson;
|
| | |
|
| | | /**
|
| | | * 申请人
|
| | | */
|
| | | private String applyPerson;
|
| | | /**
|
| | | * 审批人
|
| | | */
|
| | | private int ratifyPerson;
|
| | | /**
|
| | | * 状态
|
| | | */
|
| | | private int status;
|
| | | /**
|
| | | * 开始开会时间
|
| | | */
|
| | | @JsonFormat(timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
| | | private Date happenStartTime;
|
| | |
|
| | | private String status;
|
| | | /**
|
| | | * 结束时间
|
| | | */
|
| | | @JsonFormat(timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
| | | private Date happenEndTime;
|
| | | /**
|
| | | * 创建时间
|
| | | */
|
| | | @JsonFormat(pattern = "yyyy-MM-dd")
|
| | | private Date createTime;
|
| | |
|
| | |
|
| | |
|
| | | }
|