From 133307a0637193ca0c23f468aea2bd91c76e710a Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期五, 08 九月 2023 14:04:57 +0800 Subject: [PATCH] # --- src/main/java/com/zy/crm/manager/entity/PlanType.java | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/crm/manager/entity/PlanType.java b/src/main/java/com/zy/crm/manager/entity/PlanType.java index 6b33647..aa2a22c 100644 --- a/src/main/java/com/zy/crm/manager/entity/PlanType.java +++ b/src/main/java/com/zy/crm/manager/entity/PlanType.java @@ -73,6 +73,12 @@ private String html; /** + * 鍖哄垎 1: 璐ф灦 0: 闆嗘垚 + */ + @ApiModelProperty(value= "鍖哄垎 1: 璐ф灦 0: 闆嗘垚 ") + private Integer type; + + /** * 鐘舵�� 1: 姝e父 0: 绂佺敤 */ @ApiModelProperty(value= "鐘舵�� 1: 姝e父 0: 绂佺敤 ") @@ -153,6 +159,18 @@ return null; } + public String getType$(){ + if (null == this.type){ return null; } + switch (this.type){ + case 1: + return "璐ф灦"; + case 2: + return "闆嗘垚"; + default: + return String.valueOf(this.type); + } + } + public String getStatus$(){ if (null == this.status){ return null; } switch (this.status){ -- Gitblit v1.9.1