| | |
| | | return null; |
| | | } |
| | | |
| | | public String getRealStartTime$(){ |
| | | if (!Cools.isEmpty(this.realStartTime)) { |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realStartTime); |
| | | }else { |
| | | return ""; |
| | | } |
| | | |
| | | } |
| | | public String getRealEndTime$(){ |
| | | if (!Cools.isEmpty(this.realEndTime)) { |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realEndTime); |
| | | }else { |
| | | return ""; |
| | | } |
| | | } |
| | | public String getType$(){ |
| | | ProjectTypeService bean = SpringUtils.getBean(ProjectTypeService.class); |
| | | ProjectType id = bean.selectOne(new EntityWrapper<ProjectType>() |