From 5e877672f949b10287f265cc14b4085719d091c3 Mon Sep 17 00:00:00 2001 From: zqy <2522236926@qq.com> Date: 星期二, 30 四月 2024 21:05:05 +0800 Subject: [PATCH] 提交会议统计 --- zhang-content/src/main/java/com/ruoyi/domain/MeetingStatistic.java | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) diff --git a/zhang-content/src/main/java/com/ruoyi/domain/MeetingStatistic.java b/zhang-content/src/main/java/com/ruoyi/domain/MeetingStatistic.java new file mode 100644 index 0000000..5b80f37 --- /dev/null +++ b/zhang-content/src/main/java/com/ruoyi/domain/MeetingStatistic.java @@ -0,0 +1,43 @@ +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; + + + +} -- Gitblit v1.9.1