From afa3bc1e2f39f66f59ee9b15d6af16593acdc9a4 Mon Sep 17 00:00:00 2001 From: LSH Date: 星期六, 02 十二月 2023 10:38:27 +0800 Subject: [PATCH] # --- src/main/java/com/zy/crm/manager/entity/PriOnline2.java | 114 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 107 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/zy/crm/manager/entity/PriOnline2.java b/src/main/java/com/zy/crm/manager/entity/PriOnline2.java index e106de5..1b5095c 100644 --- a/src/main/java/com/zy/crm/manager/entity/PriOnline2.java +++ b/src/main/java/com/zy/crm/manager/entity/PriOnline2.java @@ -134,6 +134,13 @@ private Integer settle; /** + * 杩涘害 + */ + @ApiModelProperty(value= "杩涘害") + @TableField("settle_size") + private Integer settleSize; + + /** * 娴佺▼杩涘害 */ @ApiModelProperty(value= "娴佺▼杩涘害") @@ -143,14 +150,56 @@ @ApiModelProperty(value= "") private String form; + /** + * 闆嗘垚椤圭洰璐ф灦鏍镐环鐘舵�� + */ + @ApiModelProperty(value = "鐘舵�� 3: 瀹屾垚鏍镐环 2: 寮�濮嬫牳浠� 1: 绛夊緟鏍镐环 0: 鍒濆 ") + private Integer status2; + + /** + * 鑺傜偣璐熻矗浜� + */ + @ApiModelProperty(value = "鍓痯lanId") + @TableField("assistant_plan_id") + private Long assistantPlanId; + + /** + * 鑺傜偣璐熻矗浜� + */ + @ApiModelProperty(value = "涓籶lanId") + @TableField("host_plan_id") + private Long hostPlanId; + + /** + * 鑺傜偣璐熻矗浜� + */ + @ApiModelProperty(value = "鍓痯lanId") + @TableField("assistant_pri_id") + private Long assistantPriId; + + /** + * 鑺傜偣璐熻矗浜� + */ + @ApiModelProperty(value = "涓籶lanId") + @TableField("host_pri_id") + private Long hostPriId; + + /** + * 涓诲壇鏍囪 + */ + @ApiModelProperty(value = "涓诲壇鏍囪") + @TableField("assistant_host_sign") + private Integer assistantHostSign; + public PriOnline2() {} - public PriOnline2(String title, String sheetData, Date createTime, String filepath,Integer settle) { + public PriOnline2(String title, String sheetData, Date createTime, String filepath,Integer settle,Integer settleSize) { this.title = title; this.sheetData = sheetData; this.createTime = createTime; this.filepath = filepath; this.settle = settle; + this.settleSize = settleSize; } // PriOnline priOnline = new PriOnline( @@ -167,9 +216,25 @@ case 1: return "绛夊緟纭"; case 2: + return this.settleSize.equals(this.settle+1)? "瀹℃壒閫氳繃" : "绛夊緟纭"; + case 3: return "瀹℃壒閫氳繃"; default: return String.valueOf(this.settle); + } + } + + public String getAssistantHostSign$() { + if (null == this.assistantHostSign) { + return null; + } + switch (this.assistantHostSign) { + case 1: + return "鍓祦绋�"; + case 0: + return "涓绘祦绋�"; + default: + return String.valueOf(this.assistantHostSign); } } @@ -252,15 +317,50 @@ return null; } - public String getStatus$() { - if (null == this.status){ return null; } - switch (this.status){ + public String getStatusAll$(){ + PlanService planService = SpringUtils.getBean(PlanService.class); + Plan plan = planService.selectById(this.itemId); + if (plan.getStatus2()>3 || (!Cools.isEmpty(this.getAssistantHostSign()) && this.getAssistantHostSign()==1)){ + return getStatus$(); + }else { + return "闆嗘垚"+getStatus$()+"/"+"璐ф灦"+getStatus2$(); + } + + } + + public String getStatus$(){ + PlanService planService = SpringUtils.getBean(PlanService.class); + Plan plan = planService.selectById(this.itemId); + if (null == plan.getStatus()){ return null; } + switch (plan.getStatus()){ + case 3: + return "瀹屾垚鏍镐环"; + case 2: + return "寮�濮嬫牳浠�"; case 1: - return "宸插畬鎴�"; + return "绛夊緟鏍镐环"; case 0: - return "鏈畬鎴�"; + return "鍒濆"; default: - return String.valueOf(this.status); + return String.valueOf(plan.getStatus()); + } + } + + public String getStatus2$(){ + PlanService planService = SpringUtils.getBean(PlanService.class); + Plan plan = planService.selectById(this.itemId); + if (null == plan.getStatus2()){ return null; } + switch (plan.getStatus2()){ + case 3: + return "瀹屾垚鏍镐环"; + case 2: + return "寮�濮嬫牳浠�"; + case 1: + return "绛夊緟鏍镐环"; + case 0: + return "鍒濆"; + default: + return String.valueOf(plan.getStatus2()); } } -- Gitblit v1.9.1