From d60c7b3cfde751858f36ce47d08d5391afe687a6 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@63.com> Date: 星期一, 07 十一月 2022 08:54:53 +0800 Subject: [PATCH] # --- src/main/java/com/zy/crm/manager/entity/Cstmr.java | 64 ++++++++++++++++++++++++++++++++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/crm/manager/entity/Cstmr.java b/src/main/java/com/zy/crm/manager/entity/Cstmr.java index 63566ec..e4b515a 100644 --- a/src/main/java/com/zy/crm/manager/entity/Cstmr.java +++ b/src/main/java/com/zy/crm/manager/entity/Cstmr.java @@ -297,6 +297,24 @@ return null; } + + public void setType0(String type0){ + if (Cools.isEmpty(type0)) { + return; + } + switch (type0){ + case "鍐呴攢": + this.type = 1; + break; + case "澶栭攢": + this.type = 2; + break; + default: + this.type = 1; + break; + } + } + public String getType$(){ if (null == this.type){ return null; } switch (this.type){ @@ -353,5 +371,51 @@ return new SimpleDateFormat("yyyy-MM-dd HH:mm").format(this.updateTime); } + @TableField(exist = false) + private String pcd; + + public String getPcd() { + StringBuilder sb = new StringBuilder(); + if (!Cools.isEmpty(province)) { + sb.append(province).append(","); + } + if (!Cools.isEmpty(city)) { + sb.append(city).append(","); + } + if (!Cools.isEmpty(district)) { + sb.append(district).append(","); + } + String s = sb.toString(); + if (s.endsWith(",")) { + s = s.substring(0, s.length() - 1); + } + return s; + } + + public void setPcd(String pcd) { + this.pcd = pcd; + if (!Cools.isEmpty(pcd)) { + String[] split = this.pcd.split(","); + for (int i = 0;i< split.length; i++) { + switch (i) { + case 0: + this.province = split[0]; + break; + case 1: + this.city = split[1]; + break; + case 2: + this.district = split[2]; + break; + default: + break; + } + } + } else { + this.province = ""; + this.city = ""; + this.district = ""; + } + } } -- Gitblit v1.9.1