From 518b7a20ef1add6c6910eca89b1fef0fbd83e03d Mon Sep 17 00:00:00 2001 From: whycq <you@example.com> Date: 星期日, 01 一月 2023 07:03:19 +0800 Subject: [PATCH] # --- src/main/java/com/zy/crm/manager/entity/Plan.java | 83 +++++++---------------------------------- 1 files changed, 15 insertions(+), 68 deletions(-) diff --git a/src/main/java/com/zy/crm/manager/entity/Plan.java b/src/main/java/com/zy/crm/manager/entity/Plan.java index a0d5a6c..0514720 100644 --- a/src/main/java/com/zy/crm/manager/entity/Plan.java +++ b/src/main/java/com/zy/crm/manager/entity/Plan.java @@ -123,7 +123,7 @@ * 瑙勫垝鍛� */ @ApiModelProperty(value= "瑙勫垝鍛�") - private String planner; + private Long planner; /** * 瀹屾垚鏃堕棿 @@ -174,9 +174,9 @@ private String files; /** - * 杩涘害 杩涘害 1: 寮�濮� 2: 缁勯暱瀹℃牳 3: 瑙勫垝瀹℃牳 4: 瀹℃壒閫氳繃 + * 杩涘害 1: 寮�濮� 2: 缁勯暱瀹℃牳 3: 鍞墠缁勯暱瀹℃牳 4: 瑙勫垝鍛樺鏍� 5: 瀹℃壒閫氳繃 */ - @ApiModelProperty(value= "杩涘害 1: 寮�濮� 2: 缁勯暱瀹℃牳 3: 瑙勫垝瀹℃牳 4: 瀹℃壒閫氳繃 ") + @ApiModelProperty(value= "杩涘害 1: 寮�濮� 2: 缁勯暱瀹℃牳 3: 鍞墠瀹℃牳 4: 瑙勫垝鍛樺鏍� 5: 瀹℃壒閫氳繃 ") private Integer settle; /** @@ -235,70 +235,6 @@ private String memo; public Plan() {} - - public Plan(Long hostId,Long deptId,Long planType,Long userId,Long orderId,Long cstmrId,String uuid,String name,Date appleTime,Long planNeed,Integer beItem,String planner,Date finishTime,String form,Integer change,Integer changeTime,String changeReason,Double planBonus,Double planLeaderBonus,String files,Integer settle,String settleMsg,String comment,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { - this.hostId = hostId; - this.deptId = deptId; - this.planType = planType; - this.userId = userId; - this.orderId = orderId; - this.cstmrId = cstmrId; - this.uuid = uuid; - this.name = name; - this.appleTime = appleTime; - this.planNeed = planNeed; - this.beItem = beItem; - this.planner = planner; - this.finishTime = finishTime; - this.form = form; - this.change = change; - this.changeTime = changeTime; - this.changeReason = changeReason; - this.planBonus = planBonus; - this.planLeaderBonus = planLeaderBonus; - this.files = files; - this.settle = settle; - this.settleMsg = settleMsg; - this.comment = comment; - this.status = status; - this.createBy = createBy; - this.createTime = createTime; - this.updateBy = updateBy; - this.updateTime = updateTime; - this.memo = memo; - } - -// Plan plan = new Plan( -// null, // 鎵�灞炲晢鎴� -// null, // 鎵�灞為儴闂� -// null, // 涓氬姟绫诲瀷[闈炵┖] -// null, // 涓氬姟鍛� -// null, // 璺熻釜椤圭洰 -// null, // 鐢叉柟鍗曚綅 -// null, // 瑙勫垝鍗曚唬鍙穂闈炵┖] -// null, // 瑙勫垝鍗曞悕绉癧闈炵┖] -// null, // 鐢宠鏃ユ湡 -// null, // 鏂规鎵�闇� -// null, // 绔嬮」 -// null, // 瑙勫垝鍛� -// null, // 瀹屾垚鏃堕棿 -// null, // 琛ㄥ崟鍐呭 -// null, // 鏇存敼鏂规 -// null, // 鏇存敼娆℃暟 -// null, // 鏇存敼鏂规鍘熷洜 -// null, // 瑙勬牸濂栭噾 -// null, // 瑙勬牸缁勯暱濂栭噾 -// null, // 闄勪欢 -// null, // 杩涘害 -// null, // 瀹℃牳杩涘害 -// null, // 璇勮 -// null, // 鐘舵�� -// null, // 娣诲姞浜哄憳 -// null, // 娣诲姞鏃堕棿 -// null, // 淇敼浜哄憳 -// null, // 淇敼鏃堕棿 -// null // 娉ㄩ噴 -// ); public String getHostId$(){ HostService service = SpringUtils.getBean(HostService.class); @@ -409,14 +345,25 @@ case 2: return "缁勯暱瀹℃牳"; case 3: - return "瑙勫垝瀹℃牳"; + return "鍞墠瀹℃牳"; case 4: + return "瑙勫垝鍛樺鏍�"; + case 5: return "瀹℃壒閫氳繃"; default: return String.valueOf(this.settle); } } + public String getPlanner$(){ + UserService service = SpringUtils.getBean(UserService.class); + User user = service.selectById(this.planner); + if (!Cools.isEmpty(user)){ + return String.valueOf(user.getNickname()); + } + return null; + } + public String getStatus$(){ if (null == this.status){ return null; } switch (this.status){ -- Gitblit v1.9.1