|
@@ -11,6 +11,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
import com.github.pagehelper.PageHelper;
|
|
|
import com.github.pagehelper.PageInfo;
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
+import com.xintong.visualinspection.bean.CheckmanStatisticsBean;
|
|
|
import com.xintong.visualinspection.bean.StatisticsBean;
|
|
import com.xintong.visualinspection.bean.StatisticsBean;
|
|
|
import com.xintong.visualinspection.bean.StatisticsBo;
|
|
import com.xintong.visualinspection.bean.StatisticsBo;
|
|
|
import com.xintong.visualinspection.bean.Team;
|
|
import com.xintong.visualinspection.bean.Team;
|
|
@@ -170,4 +171,13 @@ public class StatisticsController extends BaseController {
|
|
|
return super.returnSuccessResult(new PageInfo(returnList));
|
|
return super.returnSuccessResult(new PageInfo(returnList));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取考核列表情况
|
|
|
|
|
+ */
|
|
|
|
|
+ @RequestMapping(value = "/checkman/info")
|
|
|
|
|
+ public String getCheckmanInfo(@RequestBody CheckmanStatisticsBean obj){
|
|
|
|
|
+ CheckmanStatisticsBean returnObj= statisticsService.getCheckmanStatisticInfo(obj);
|
|
|
|
|
+ return super.returnSuccessResult(returnObj);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|