fix: 从新生成NoticeStatus模块

从新生成NoticeStatus模块。并开始写相关代码。
This commit is contained in:
Kylin
2024-08-28 18:03:42 +08:00
parent 226757d4f8
commit a1143a48a6
10 changed files with 58 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ import jakarta.validation.Valid;
* 用户公告状态前端控制层
*
* @author youlaitech
* @since 2024-08-27 09:53
* @since 2024-08-28 16:56
*/
@Tag(name = "用户公告状态接口")
@RestController

View File

@@ -9,7 +9,7 @@ import com.youlai.system.model.form.NoticeStatusForm;
* 用户公告状态对象转换器
*
* @author youlaitech
* @since 2024-08-27 09:53
* @since 2024-08-28 16:56
*/
@Mapper(componentModel = "spring")
public interface NoticeStatusConverter{

View File

@@ -11,7 +11,7 @@ import org.apache.ibatis.annotations.Mapper;
* 用户公告状态Mapper接口
*
* @author youlaitech
* @since 2024-08-27 09:53
* @since 2024-08-28 16:56
*/
@Mapper
public interface NoticeStatusMapper extends BaseMapper<NoticeStatus> {

View File

@@ -10,7 +10,7 @@ import com.youlai.system.common.base.BaseEntity;
* 用户公告状态实体对象
*
* @author youlaitech
* @since 2024-08-27 09:53
* @since 2024-08-28 16:56
*/
@Getter
@Setter

View File

@@ -12,7 +12,7 @@ import jakarta.validation.constraints.*;
* 用户公告状态表单对象
*
* @author youlaitech
* @since 2024-08-27 09:53
* @since 2024-08-28 16:56
*/
@Getter
@Setter

View File

@@ -5,12 +5,13 @@ import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import java.time.LocalDateTime;
import java.util.List;
/**
* 用户公告状态分页查询对象
*
* @author youlaitech
* @since 2024-08-27 09:53
* @since 2024-08-28 16:56
*/
@Schema(description ="用户公告状态查询对象")
@Getter
@@ -18,4 +19,15 @@ import java.time.LocalDateTime;
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 List<String> readTiem;
}

View File

@@ -12,7 +12,7 @@ import java.time.LocalDateTime;
* 用户公告状态视图对象
*
* @author youlaitech
* @since 2024-08-27 09:53
* @since 2024-08-28 16:56
*/
@Getter
@Setter
@@ -22,4 +22,14 @@ public class NoticeStatusVO implements Serializable {
@Serial
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;
}

View File

@@ -11,7 +11,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
* 用户公告状态服务类
*
* @author youlaitech
* @since 2024-08-27 09:53
* @since 2024-08-28 16:56
*/
public interface NoticeStatusService extends IService<NoticeStatus> {

View File

@@ -24,7 +24,7 @@ import cn.hutool.core.util.StrUtil;
* 用户公告状态服务实现类
*
* @author youlaitech
* @since 2024-08-27 09:53
* @since 2024-08-28 16:56
*/
@Service
@RequiredArgsConstructor