| | |
| | | @ApiModelProperty(value= "节点负责人") |
| | | private Long director; |
| | | |
| | | public Plan() {} |
| | | /** |
| | | * 集成项目货架核价状态 |
| | | */ |
| | | @ApiModelProperty(value = "状态 3: 完成核价 2: 开始核价 1: 等待核价 0: 初始 ") |
| | | private Integer status2; |
| | | |
| | | /** |
| | | * 节点负责人 |
| | | */ |
| | | @ApiModelProperty(value = "副planId") |
| | | @TableField("assistant_plan_id") |
| | | private Long assistantPlanId; |
| | | |
| | | /** |
| | | * 节点负责人 |
| | | */ |
| | | @ApiModelProperty(value = "主planId") |
| | | @TableField("host_plan_id") |
| | | private Long hostPlanId; |
| | | |
| | | /** |
| | | * 节点负责人 |
| | | */ |
| | | @ApiModelProperty(value = "主planId") |
| | | @TableField("assistant_host_sign") |
| | | private Integer assistantHostSign; |
| | | |
| | | public Plan() { |
| | | } |
| | | |
| | | public Plan(Plan plan) { |
| | | this.hostId = plan.getHostId(); |
| | | this.deptId = plan.getDeptId(); |
| | | this.planType = plan.getPlanType(); |
| | | this.userId = plan.getUserId(); |
| | | this.orderId = plan.getOrderId(); |
| | | this.cstmrId = plan.getCstmrId(); |
| | | this.name = plan.getName(); |
| | | this.planNeed = plan.getPlanNeed(); |
| | | this.beItem = plan.getBeItem(); |
| | | this.form = plan.getForm(); |
| | | this.finishTime = plan.getFinishTime(); |
| | | this.change = plan.getChange(); |
| | | this.changeTime = plan.getChangeTime(); |
| | | this.changeReason = plan.getChangeReason(); |
| | | this.planBonus = plan.getPlanBonus(); |
| | | this.planLeaderBonus = plan.getPlanLeaderBonus(); |
| | | this.files = plan.getFiles(); |
| | | this.comment = plan.getComment(); |
| | | this.memo = plan.getMemo(); |
| | | this.userXmlSelPhone = plan.getUserXmlSelPhone(); |
| | | } |
| | | |
| | | public String getHostId$(){ |
| | | HostService service = SpringUtils.getBean(HostService.class); |
| | |
| | | } |
| | | |
| | | public String getBeItem$(){ |
| | | if (null == this.beItem){ return null; } |
| | | if (null == this.beItem) { |
| | | return null; |
| | | } |
| | | switch (this.beItem){ |
| | | case 1: |
| | | return "是"; |
| | |
| | | } |
| | | |
| | | public String getChange$(){ |
| | | if (null == this.change){ return null; } |
| | | if (null == this.change) { |
| | | return null; |
| | | } |
| | | switch (this.change){ |
| | | case 1: |
| | | return "是"; |
| | |
| | | } |
| | | |
| | | public String getSettle$(){ |
| | | if (null == this.settle){ return null; } |
| | | if (null == this.settle) { |
| | | return null; |
| | | } |
| | | switch (this.settle){ |
| | | // case 1: |
| | | // return "等待组长审核"; |
| | |
| | | } |
| | | |
| | | public String getStatus$(){ |
| | | if (null == this.status){ return null; } |
| | | if (null == this.status) { |
| | | return null; |
| | | } |
| | | switch (this.status){ |
| | | case 2: |
| | | return "开始核价"; |