File was renamed from zhang-content/src/main/java/com/ruoyi/domain/MeetingStatistic.java |
| | |
| | | package com.ruoyi.domain;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import lombok.Data;
|
| | |
|
| | | @Data
|
| | | @TableName("meeting_ratify")
|
| | | public class MeetingRatify {
|
| | | @TableId(value = "id", type = IdType.AUTO)
|
| | | private Long id;
|
| | |
|
| | | private int familyId;
|
| | |
|
| | | private String useTime;
|
| | |
|
| | | private String conferenceRoom;
|
| | |
|
| | | private String title;
|
| | |
|
| | | private int applyPerson;
|
| | |
|
| | | private int ratifyPerson;
|
| | |
|
| | | private String status;
|
| | |
|
| | | }
|
| | | package com.ruoyi.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @TableName("meeting_ratify") |
| | | public class MeetingRatify { |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | private int familyId; |
| | | |
| | | private String useTime; |
| | | |
| | | private String conferenceRoom; |
| | | |
| | | private String title; |
| | | |
| | | private int applyPerson; |
| | | |
| | | private int ratifyPerson; |
| | | |
| | | private String status; |
| | | |
| | | } |