From 10f91cf8cc7f5ebe1cb4d9f06bd9cf4693277dc6 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期四, 21 十一月 2024 09:17:45 +0800 Subject: [PATCH] # --- zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Jam.java | 30 ++++++++++-------------------- 1 files changed, 10 insertions(+), 20 deletions(-) diff --git a/zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Jam.java b/zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Jam.java index f916219..cb0f80c 100644 --- a/zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Jam.java +++ b/zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Jam.java @@ -58,6 +58,12 @@ private Long jamSeg; /** + * 闃诲璺緞 + */ + @ApiModelProperty(value= "闃诲璺緞") + private String jamPath; + + /** * 閬胯杞﹁締 */ @ApiModelProperty(value= "閬胯杞﹁締") @@ -210,31 +216,17 @@ return null; } - public String getCycleAvo$(){ + public Boolean getCycleAvoBool(){ if (null == this.cycleAvo){ return null; } switch (this.cycleAvo){ case 1: - return "鏄�"; + return true; case 0: - return "鍚�"; + return false; default: - return String.valueOf(this.cycleAvo); + return null; } } - - public String getStatus$(){ - if (null == this.status){ return null; } - switch (this.status){ - case 1: - return "姝e父"; - case 0: - return "鍐荤粨"; - default: - return String.valueOf(this.status); - } - } - - public Boolean getStatusBool(){ if (null == this.status){ return null; } @@ -247,7 +239,5 @@ return null; } } - - } -- Gitblit v1.9.1