|
@@ -172,4 +172,20 @@ public class AdminJtBusinessController extends CertifyApiController{
|
|
|
return ;
|
|
return ;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
|
+ * 项目详情
|
|
|
|
|
+ *
|
|
|
|
|
+ * */
|
|
|
|
|
+ @RequestMapping(value="/project/detail",method=RequestMethod.GET)
|
|
|
|
|
+ private Result getProjectDetail(String id) {
|
|
|
|
|
+ Result result=new Result();
|
|
|
|
|
+ if(id == null) {
|
|
|
|
|
+ result.getError().add(buildError(ErrorConstants.PARAM_ERROR,"","id不能为空,"));
|
|
|
|
|
+ return result;
|
|
|
|
|
+ }
|
|
|
|
|
+ result.setData(jtBusinessService.getBusinessProjectDetail(id));
|
|
|
|
|
+ return result;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
}
|
|
}
|