| 123456789101112131415161718 |
- package space.anyi.serve.entity.notification;
- import io.swagger.v3.oas.annotations.media.Schema;
- @Schema(description = "未读通知数量视图")
- public class UnreadCountVo {
- @Schema(description = "未读数量")
- private Long count;
- public UnreadCountVo() {}
- public UnreadCountVo(Long count) {
- this.count = count;
- }
- public Long getCount() { return count; }
- public void setCount(Long count) { this.count = count; }
- }
|