From d4e6820f6cc65ab6d7315abeff8360dbf5fd4a91 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期四, 19 三月 2026 16:32:08 +0800
Subject: [PATCH] #
---
src/main/java/com/zy/asrs/entity/WrkMastLog.java | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/zy/asrs/entity/WrkMastLog.java b/src/main/java/com/zy/asrs/entity/WrkMastLog.java
index 8436eb6..0c9efa7 100644
--- a/src/main/java/com/zy/asrs/entity/WrkMastLog.java
+++ b/src/main/java/com/zy/asrs/entity/WrkMastLog.java
@@ -15,6 +15,7 @@
import com.zy.system.service.UserService;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
+import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.text.SimpleDateFormat;
@@ -97,6 +98,7 @@
*/
@ApiModelProperty(value= "宸ヤ綔鏃堕棿")
@TableField("io_time")
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date ioTime;
/**
@@ -111,6 +113,7 @@
*/
@ApiModelProperty(value= "淇敼鏃堕棿")
@TableField("modi_time")
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date modiTime;
/**
@@ -125,10 +128,12 @@
*/
@ApiModelProperty(value= "娣诲姞鏃堕棿")
@TableField("appe_time")
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date appeTime;
@ApiModelProperty(value= "")
@TableField("error_time")
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date errorTime;
@ApiModelProperty(value= "")
@@ -181,6 +186,13 @@
private String systemMsg;
/**
+ * 涓嬪彂澶辫触娆℃暟
+ */
+ @ApiModelProperty(value= "涓嬪彂澶辫触娆℃暟")
+ @TableField(value = "send_fail_count")
+ private Integer sendFailCount;
+
+ /**
* 鎵规鍙�
*/
@ApiModelProperty(value= "鎵规鍙�")
@@ -202,6 +214,9 @@
if (entity != null) {
return entity.getWrkDesc();
}
+ try {
+ return com.zy.core.enums.WrkStsType.query(this.wrkSts).desc;
+ } catch (Exception ignore) {}
return null;
}
--
Gitblit v1.9.1