From b14531e3b850fe6d2fa916ba7b88b3e2bd2ff30a Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期三, 11 九月 2024 16:47:48 +0800 Subject: [PATCH] OSD加标签 --- ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java | 30 ++++++++++++++++++++++++++---- 1 files changed, 26 insertions(+), 4 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java index 1be1ae5..a233dea 100644 --- a/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/ReportVO.java @@ -10,6 +10,7 @@ import org.springframework.lang.NonNull; import java.util.Date; +import java.util.List; /** * 鎶ュ灞曠ず @@ -28,11 +29,12 @@ /** 杩愮淮浜哄憳ID */ private Integer peopleId; - @Excel(name = "鎶ュ浜哄憳") private String peopleName; /** 璁惧缂栫爜 */ private String serialNumber; + + private String pointId; @Excel(name = "鐐逛綅") private String pointName; @@ -46,12 +48,27 @@ private String reportContent; /** 涓婃姤鏉愭枡 */ - @Excel(name = "涓婃姤鏉愭枡") private String reportMaterials; /** 鏁呴殰绫诲瀷 */ @Excel(name = "鏁呴殰绫诲瀷") private String errorType; + + private List<String> errorTypeList; + + /** + * 瀹℃牳缁撴灉 + */ + private Boolean result; + + @Excel(name = "瀹℃牳鐘舵��") + private String resultStr; + + /** + * 瀹℃牳鎰忚 + */ + @Excel(name = "瀹℃牳鎰忚") + private String resultRemark; /** 瀹℃牳鏃堕棿 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @@ -61,13 +78,13 @@ /** * 鐢熸晥鏃堕棿 */ - @JsonFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date beginCreateTime; /** * 澶辨晥鏃堕棿 */ - @JsonFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date endCreateTime; /** @@ -75,6 +92,11 @@ */ private Integer status; + /** + * 鎵归噺瀵煎叆鎵规鍙� + */ + private String importBatchNumber; + public static ReportVO getVoByEntity(@NonNull Report entity, ReportVO vo) { if(vo == null) { vo = new ReportVO(); -- Gitblit v1.8.0