From 4082ee4d1cd2357771d7f844a57fe4932a1dd4c4 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期三, 21 八月 2024 15:03:46 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/FaceDeviceInspectionResult.java | 78 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 78 insertions(+), 0 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/FaceDeviceInspectionResult.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/FaceDeviceInspectionResult.java index 309d49c..b7b4fa0 100644 --- a/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/FaceDeviceInspectionResult.java +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/FaceDeviceInspectionResult.java @@ -75,6 +75,11 @@ */ private Integer snapResult; + /** + * 鎶撴媿鏁版嵁閲忕洃娴嬬粨鏋滐紝1:姝e父 2:鏃犳暟鎹� 4:鏁版嵁閲忓皯 + */ + private String snapResultText; + // 浠ヤ笅涓哄祵濂楀璞$殑瀛楁 /** @@ -97,6 +102,19 @@ */ private SnapUnique snapUnique; + public String getSnapResultText() { + if (snapResult == 1) { + snapResultText = "姝e父"; + } + if (snapResult == 2) { + snapResultText = "鏃犳暟鎹�"; + } + if (snapResult == 4) { + snapResultText = "鏁版嵁閲忓皯"; + } + return snapResultText; + } + // 鍐呭祵瀵硅薄瀹氫箟 @Data @@ -117,6 +135,11 @@ private Integer todayClockResult; /** + * 褰撴棩鎺ユ敹鐨勫綋鏃ユ姄鎷嶆暟鎹椂閽熷噯纭�у垽瀹氱粨鏋滐細1鏄悎鏍硷紝0鏄笉鍚堟牸 + */ + private String todayClockResultText; + + /** * 褰撴棩鎺ユ敹鐨勫叏閮ㄦ姄鎷嶆暟鎹腑鏃堕挓鍑嗙‘鏁版嵁閲� */ private Integer allClockCount; @@ -125,6 +148,31 @@ * 褰撴棩鎺ユ敹鐨勫叏閮ㄦ姄鎷嶆暟鎹腑鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋滐細1鏄悎鏍硷紝0鏄笉鍚堟牸 */ private Integer allClockResult; + + /** + * 褰撴棩鎺ユ敹鐨勫叏閮ㄦ姄鎷嶆暟鎹腑鏃堕挓鍑嗙‘鎬у垽瀹氱粨鏋滐細1鏄悎鏍硷紝0鏄笉鍚堟牸 + */ + private String allClockResultText; + + public String getTodayClockResultText() { + if (todayClockResult == 1) { + todayClockResultText = "鍚堟牸"; + } + if (todayClockResult == 0) { + todayClockResultText = "涓嶅悎鏍�"; + } + return todayClockResultText; + } + + public String getAllClockResultText() { + if (allClockResult == 1) { + allClockResultText = "鍚堟牸"; + } + if (allClockResult == 0) { + allClockResultText = "涓嶅悎鏍�"; + } + return allClockResultText; + } } @Data @@ -160,6 +208,11 @@ private Integer todayTimelyResult; /** + * 褰撴棩鎺ユ敹鐨勫綋鏃ユ姄鎷嶆暟鎹強鏃舵�у垽瀹氱粨鏋滐細1鏄悎鏍硷紝0鏄笉鍚堟牸 + */ + private String todayTimelyResultText; + + /** * 褰撴棩鎺ユ敹鐨勫叏閮ㄦ姄鎷嶆暟鎹腑寤惰繜鏁版嵁閲� */ private Integer allDelayCount; @@ -183,6 +236,31 @@ * 褰撴棩鎺ユ敹鐨勫叏閮ㄦ姄鎷嶆暟鎹腑鍙婃椂鎬у垽瀹氱粨鏋滐細1鏄悎鏍硷紝0鏄笉鍚堟牸 */ private Integer allTimelyResult; + + /** + * 褰撴棩鎺ユ敹鐨勫叏閮ㄦ姄鎷嶆暟鎹腑鍙婃椂鎬у垽瀹氱粨鏋滐細1鏄悎鏍硷紝0鏄笉鍚堟牸 + */ + private String allTimelyResultText; + + public String getTodayTimelyResultText() { + if (todayTimelyResult == 1) { + todayTimelyResultText = "鍚堟牸"; + } + if (todayTimelyResult == 0) { + todayTimelyResultText = "涓嶅悎鏍�"; + } + return todayTimelyResultText; + } + + public String getAllTimelyResultText() { + if (allTimelyResult == 1) { + allTimelyResultText = "鍚堟牸"; + } + if (allTimelyResult == 0) { + allTimelyResultText = "涓嶅悎鏍�"; + } + return allTimelyResultText; + } } @Data -- Gitblit v1.8.0