Files
youlai-boot/src/main/java/com/youlai/system/model/query/NoticeStatusQuery.java
Ky10 96b4d39725 feat: 通知公告模块
通知公告模块编写。
完成代码生成部分的bug修改
2024-08-08 15:46:32 +08:00

32 lines
870 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;
}