| | |
| | | return null; |
| | | } |
| | | |
| | | public Integer getPLType$(){ |
| | | PlanTypeService service = SpringUtils.getBean(PlanTypeService.class); |
| | | PlanType planType = service.selectById(this.planType); |
| | | if (!Cools.isEmpty(planType)){ |
| | | return planType.getType(); |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | public String getUserId$(){ |
| | | UserService service = SpringUtils.getBean(UserService.class); |
| | | User user = service.selectById(this.userId); |
| | |
| | | public String getStatus$(){ |
| | | if (null == this.status){ return null; } |
| | | switch (this.status){ |
| | | case 2: |
| | | return "开始核价"; |
| | | case 1: |
| | | return "正常"; |
| | | return "等待核价"; |
| | | case 0: |
| | | return "禁用"; |
| | | return "未完成"; |
| | | default: |
| | | return String.valueOf(this.status); |
| | | } |