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_statistic")
|
public class MeetingStatistic {
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 家庭号
|
*/
|
private Long familyId;
|
/**
|
* 使用时间
|
*/
|
private String useTime;
|
/**
|
* 会议室名称
|
*/
|
private String conferenceRoom;
|
/**
|
* 标题
|
*/
|
private String title;
|
/**
|
* 申请人
|
*/
|
private String applyPerson;
|
/**
|
* 审批人
|
*/
|
private int ratifyPerson;
|
/**
|
* 状态
|
*/
|
private int status;
|
|
|
|
}
|