feat: 通知公告模块

通知公告模块编写。
完成代码生成部分的bug修改
This commit is contained in:
Ky10
2024-08-08 15:46:32 +08:00
parent 1eaae6dec8
commit 96b4d39725
20 changed files with 1049 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
package com.youlai.system.model.query;
import com.youlai.system.common.base.BasePageQuery;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import java.time.LocalDateTime;
/**
* 用户公告状态分页查询对象
*
* @author youlaitech
* @since 2024-08-08 11:46
*/
@Schema(description ="用户公告状态查询对象")
@Getter
@Setter
public class NoticeStatusQuery extends BasePageQuery {
private static final long serialVersionUID = 1L;
@Schema(description = "id")
private Long id;
@Schema(description = "公共通知id")
private Long noticeId;
@Schema(description = "用户id")
private Integer userId;
@Schema(description = "读取状态0未读1已读取")
private Long readStatus;
@Schema(description = "用户阅读时间")
private LocalDateTime readTiem;
}