UnreadCountVo.java 458 B

123456789101112131415161718
  1. package space.anyi.serve.entity.notification;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. @Schema(description = "未读通知数量视图")
  4. public class UnreadCountVo {
  5. @Schema(description = "未读数量")
  6. private Long count;
  7. public UnreadCountVo() {}
  8. public UnreadCountVo(Long count) {
  9. this.count = count;
  10. }
  11. public Long getCount() { return count; }
  12. public void setCount(Long count) { this.count = count; }
  13. }