Browse Source

部门新增字段显示标识

anderx 3 years ago
parent
commit
a3b487b83b

+ 1 - 1
src/main/java/com/goafanti/order/controller/StatisticsApiController.java

@@ -42,7 +42,7 @@ public class StatisticsApiController extends CertifyApiController {
 	@RequestMapping(value="/selectTaskList" ,method = RequestMethod.GET)
 	public Result selectTaskList(InputProjectStatistics ps){
 		Result res=new Result();
-		res.setData(projectStatisticsService.selectTaskList( ps));
+		res.setData(projectStatisticsService.selectTaskList(ps));
 		return res;
 	}