From f77a9d8f16bae6b4cf809891f037c038070e81ed Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期四, 19 六月 2025 17:12:50 +0800 Subject: [PATCH] 工单,数据中心用户查看数据的权限,合同考核每日,以及导出每日和按月 --- ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CalculateReportVO.java | 16 ++++++++++++++++ 1 files changed, 16 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..db4f596 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,24 @@ /** 鏈�杩戜竴娆℃牳绠楁椂闂� */ private LocalDateTime latestTime; + /** 鑳藉惁鍙戝竷 */ + private Boolean canPublish; + + private CalculateReportStatusEnum status; + + /** 鏈�鏂颁竴娆℃墸娆� */ + private BigDecimal latestDeductMoney; + /** 鏄庣粏 */ private List<CalculateRecordVO> recordList; + private Integer whichYear; + private Integer whichMonth; + private Integer whichDay; + + private Integer latestMonth; + private Integer latestDay; + public static CalculateReportVO getVoByEntity(@NonNull CalculateReport entity, CalculateReportVO vo) { if(vo == null) { vo = new CalculateReportVO(); -- Gitblit v1.8.0