|
|
@@ -4,12 +4,16 @@ import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import com.github.pagehelper.PageHelper;
|
|
|
+import com.github.pagehelper.PageInfo;
|
|
|
import com.xintong.visualinspection.bean.StatisticsBean;
|
|
|
import com.xintong.visualinspection.bean.StatisticsBo;
|
|
|
+import com.xintong.visualinspection.bean.Team;
|
|
|
import com.xintong.visualinspection.service.StatisticsService;
|
|
|
|
|
|
/**
|
|
|
@@ -156,4 +160,13 @@ public class StatisticsController extends BaseController {
|
|
|
return super.returnSuccessResult(returnList);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取收费站具体某个人的扣分详情
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/one/checkedItem/detail/info/{page}/{size}")
|
|
|
+ public String getFsOnePersonCheckedItemDetailInfo(@RequestBody StatisticsBean obj,@PathVariable Integer page,@PathVariable Integer size){
|
|
|
+ PageHelper.offsetPage(page, size);
|
|
|
+ List<StatisticsBean> returnList= statisticsService.getOneCheckedDetailInfo(obj);
|
|
|
+ return super.returnSuccessResult(new PageInfo(returnList));
|
|
|
+ }
|
|
|
}
|