|
@@ -33,16 +33,24 @@ public class EartagDataController {
|
|
|
* 列表 个体是数据 也就是首页数据
|
|
|
*/
|
|
|
@RequestMapping("/listIndex")
|
|
|
- public R listIndex(EartagParamVo eartagParamVo) throws ParseException {
|
|
|
+ public R listIndex( @RequestBody EartagParamVo eartagParamVo) throws ParseException {
|
|
|
|
|
|
PageUtils page = eartagDataService.queryPageIndex(eartagParamVo);
|
|
|
|
|
|
+ System.out.println(eartagParamVo.toString());
|
|
|
+
|
|
|
return R.ok().put("page", page);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 耳标数据详情展示
|
|
|
* 换个思路 不是每一都展,以15分钟为界行显示
|