From db75b45e9a7ce347162b8d3a36e4a7f46cfe199e Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 10 二月 2025 15:30:18 +0800 Subject: [PATCH] 核算导出单独对录像扣分的数量做处理 --- ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CalculateReportVO.java | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CalculateReportVO.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CalculateReportVO.java index d770ebb..6af1baa 100644 --- a/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CalculateReportVO.java +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CalculateReportVO.java @@ -7,6 +7,7 @@ import java.util.List; import java.time.LocalDateTime; +import enumeration.general.CalculateReportStatusEnum; import org.springframework.lang.NonNull; import org.springframework.beans.BeanUtils; import lombok.Data; @@ -41,9 +42,21 @@ /** 鏈�杩戜竴娆℃牳绠楁椂闂� */ private LocalDateTime latestTime; + /** 鑳藉惁鍙戝竷 */ + private Boolean canPublish; + + private CalculateReportStatusEnum status; + + /** 鏈�鏂颁竴娆℃墸娆� */ + private BigDecimal latestDeductMoney; + /** 鏄庣粏 */ private List<CalculateRecordVO> recordList; + private Integer whichYear; + private Integer whichMonth; + private Integer latestMonth; + public static CalculateReportVO getVoByEntity(@NonNull CalculateReport entity, CalculateReportVO vo) { if(vo == null) { vo = new CalculateReportVO(); -- Gitblit v1.8.0