Commit 594b2fec by yangyang

时空标准提交

parent 19dedad5
package com.founder.publicapi.controller.ZtypService;
import com.founder.commonutils.model.newPublicEntity.*;
import com.founder.commonutils.model.newPublicEntity.ztypEntity.*;
import com.founder.commonutils.util.JwtUser;
import com.founder.commonutils.util.KeyUtil;
import com.founder.publicapi.service.ZtypService;
import com.founder.servicebase.logs.OperLog;
import com.founder.servicebase.logs.OperationType;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Api(tags = "主题研判管理")
@RestController
@RequestMapping("/ztyp")
public class ZtypController {
@Autowired
private ZtypService ztypService;
@PostMapping("/selectDxzpAj")
@OperLog(message = "查询所有的电信网络诈骗的案件",operation = OperationType.QUERY)
@ApiOperation(value = "查询所有的电信网络诈骗的案件")
public R selectFraudCases(ZpajxxModel model) {
model.setPage((model.getPage() - 1) * model.getLimit());
model.setLimit(model.getLimit());
int total = ztypService.getZpajxxTotal(model);
List<ZpajxxEntity> list = null;
if(total>0){
list = ztypService.getZpajxx(model);
}
return R.ok().total(total).rows(list);
}
@PostMapping("/save")
public R saveNewFwbshYp(TbStZtypFwbsh fwbsh,HttpServletRequest request){
try {
String xxzjbh = KeyUtil.getUUIDKey("BSH");
fwbsh.setDjUser(JwtUser.getUser(request));
fwbsh.setXxzjbh(xxzjbh);
ztypService.saveNewFwbshYp(fwbsh);
return R.ok().data("xxzjbh", xxzjbh);
} catch (Exception e) {
e.printStackTrace();
return R.error(e.getMessage());
}
}
@PostMapping("/list")
public R listFwbshYp(TbStZtypFwbsh fwbsh,HttpServletRequest request){
try {
fwbsh.setXxdjryGmsfhm(JwtUser.getUser(request).getIdentitycard());
Map<String, Object> resultMap = ztypService.listFwbshYp(fwbsh);
return R.ok().data(resultMap);
} catch (Exception e) {
e.printStackTrace();
return R.error(e.getMessage());
}
}
@PostMapping("/update")
public R updateFwbshYp(TbStZtypFwbsh fwbsh,HttpServletRequest request){
try {
fwbsh.setUpUser(JwtUser.getUser(request));
ztypService.updateFwbshYp(fwbsh);
return R.ok().data("xxzjbh", fwbsh.getXxzjbh());
} catch (Exception e) {
e.printStackTrace();
return R.error(e.getMessage());
}
}
@PostMapping("/delete")
public R deleteFwbshYp(TbStZtypFwbsh fwbsh,HttpServletRequest request){
try {
fwbsh.setUpUser(JwtUser.getUser(request));
fwbsh.setXxscPdbz("1");
ztypService.updateFwbshYp(fwbsh);
return R.ok().data("xxzjbh", fwbsh.getXxzjbh());
} catch (Exception e) {
e.printStackTrace();
return R.error(e.getMessage());
}
}
@PostMapping("/queryAjypfx")
@ResponseBody
@ApiOperation(value = "案件团伙分析")
public R queryAjypfx(AjQueryParam requestParam) {
requestParam.setPage((requestParam.getPage()-1) * requestParam.getLimit());
requestParam.setLimit(requestParam.getLimit());
Integer count = ztypService.queryAjypfxCount(requestParam);
List<AjypFxPojo> records = new ArrayList<>();
if (count != null && count > 0) {
records = ztypService.queryAjypfxData(requestParam);
}
return R.ok().total(count).rows(records);
}
/*@PostMapping("/getThfxAccompliceBythId")
@ResponseBody
@ApiOperation(value = "案件团伙分析可视化接口")
public R getThfxAccompliceBythId(@RequestParam(value = "id") String thbh, @RequestParam(value = "fxwd") String fxwd,
@RequestParam(value = "commonRelationshipNum") String commonRelationshipNum) {
Map<String, Object> resultMap = ztypService.getThfxAccompliceBythId(thbh, fxwd,commonRelationshipNum);
return R.ok().data(resultMap);
}*/
@PostMapping("/selectJtrwList")
@ResponseBody
@ApiOperation(value = "查询具体任务的list集合", notes = "查询具体任务的list集合")
public R selectJtrwList(TbZxrwb tbZxrwb) {
try {
tbZxrwb.setPage((tbZxrwb.getPage()-1)*tbZxrwb.getLimit());
tbZxrwb.setLimit(tbZxrwb.getLimit());
Map<String, Object> map = new HashMap<>();
List<TbZxrwb> list = ztypService.getJtrwList(tbZxrwb);
int count = ztypService.getJtrwCount(tbZxrwb);
map.put("rows", list);
map.put("total", count);
return R.ok().data(map);
} catch (Exception e) {
e.printStackTrace();
return R.error(e.getMessage());
}
}
@PostMapping("/getTransactionStatistics")
@ResponseBody
@ApiOperation(value = "查询交易信息分析数据", notes = "查询交易信息分析数据")
public R getTransactionStatistics(BankCardNumPojo bankCard) {
Map<String, Object> result = ztypService.getTransactionStatistics(bankCard);
return R.ok().data(result);
}
@PostMapping("/getTransactionDetailByTaskId")
@ResponseBody
@ApiOperation(value = "获取任务的交易详情", notes = "获取任务的交易详情")
public R getTransactionDetailByTaskId(BankCardParamPojo requestParam) {
Map<String, Object> result = ztypService.getTransactionDetailByTaskId(requestParam);
return R.ok().data(result);
}
@PostMapping("/getTradingTimeStatistics")
@ResponseBody
@ApiOperation(value = "获取交易时间规律统计", notes = "获取交易时间规律统计")
public R getTradingTimeStatistics(BankCardParamPojo requestParam) throws ParseException {
Map<String, Object> result = ztypService.getTradingTimeStatistics(requestParam);
return R.ok().data(result);
}
@PostMapping("/getTradingLocationStatistics")
@ResponseBody
@ApiOperation(value = "获取交易地域规律统计", notes = "获取交易地域规律统计")
public R getTradingLocationStatistics(BankCardParamPojo requestParam) {
Map<String, Object> result = ztypService.getTradingLocationStatistics(requestParam);
return R.ok().data(result);
}
@PostMapping("/getTradingHabitStatistics")
@ResponseBody
@ApiOperation(value = "获取交易习惯分析统计", notes = "获取交易习惯分析统计")
public R getTradingHabitStatistics(BankCardParamPojo requestParam) {
Map<String, Object> result = ztypService.getTradingHabitStatistics(requestParam);
return R.ok().data(result);
}
@PostMapping("/getTradingFrequencyStatistics")
@ResponseBody
@ApiOperation(value = "获取交易频度分析统计", notes = "获取交易频度分析统计")
public R getTradingFrequencyStatistics(BankCardParamPojo requestParam) {
Map<String, Object> result = ztypService.getTradingFrequencyStatistics(requestParam);
return R.ok().data(result);
}
@PostMapping("/getTradingRelationship")
@ResponseBody
@ApiOperation(value = "获取交易关系可视化分析", notes = "获取交易关系可视化分析")
public R getTradingRelationship(BankCardParamPojo requestParam) {
Map<String, Object> result = ztypService.getTradingRelationship(requestParam);
return R.ok().data(result);
}
// 根据银行卡号查询资金流
@PostMapping("/selectJyxxjsList")
@ResponseBody
@ApiOperation(value = "查询交易信息检索的list集合", notes = "查询交易信息检索的list集合")
public R selectJyxxjsList(TbZjlxxzx tbZjlxxzx) {
try {
Map<String, Object> map = new HashMap<>();
if (tbZjlxxzx.getBfkh() == null || "".equals(tbZjlxxzx.getBfkh())) {
map.put("rows", new ArrayList<>());
map.put("total", 0);
return R.ok().data(map);
}
EasyUIPage easyUIPage = new EasyUIPage();
easyUIPage.setPage(tbZjlxxzx.getPage());
easyUIPage.setPagePara(tbZjlxxzx.getLimit());
int begin = easyUIPage.getBegin();
int end = easyUIPage.getEnd();
tbZjlxxzx.setPage(begin);
tbZjlxxzx.setLimit(end);
List<TbZjlxxzx> list = tbZjlxxServcie.selectJyxxjsList(tbZjlxxzx);
int total = tbZjlxxServcie.selectJyxxjsListCount(tbZjlxxzx);
map.put("rows", list);
map.put("total", total);
return R.ok().data(map);
} catch (Exception e) {
e.printStackTrace();
return R.error(e.getMessage());
}
}
}
//package com.founder.publicapi.controller.ZtypService;
//
//import com.founder.commonutils.model.newPublicEntity.*;
//import com.founder.commonutils.model.newPublicEntity.ztypEntity.*;
//import com.founder.commonutils.util.JwtUser;
//import com.founder.commonutils.util.KeyUtil;
//import com.founder.publicapi.service.ZtypService;
//import com.founder.servicebase.logs.OperLog;
//import com.founder.servicebase.logs.OperationType;
//import io.swagger.annotations.Api;
//import io.swagger.annotations.ApiOperation;
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.web.bind.annotation.*;
//
//import javax.servlet.http.HttpServletRequest;
//import java.text.ParseException;
//import java.util.ArrayList;
//import java.util.HashMap;
//import java.util.List;
//import java.util.Map;
//
//@Api(tags = "主题研判管理")
//@RestController
//@RequestMapping("/ztyp")
//public class ZtypController {
// @Autowired
// private ZtypService ztypService;
//
// @PostMapping("/selectDxzpAj")
// @OperLog(message = "查询所有的电信网络诈骗的案件",operation = OperationType.QUERY)
// @ApiOperation(value = "查询所有的电信网络诈骗的案件")
// public R selectFraudCases(ZpajxxModel model) {
// model.setPage((model.getPage() - 1) * model.getLimit());
// model.setLimit(model.getLimit());
// int total = ztypService.getZpajxxTotal(model);
// List<ZpajxxEntity> list = null;
// if(total>0){
// list = ztypService.getZpajxx(model);
// }
// return R.ok().total(total).rows(list);
// }
//
// @PostMapping("/save")
// public R saveNewFwbshYp(TbStZtypFwbsh fwbsh,HttpServletRequest request){
// try {
// String xxzjbh = KeyUtil.getUUIDKey("BSH");
// fwbsh.setDjUser(JwtUser.getUser(request));
// fwbsh.setXxzjbh(xxzjbh);
// ztypService.saveNewFwbshYp(fwbsh);
// return R.ok().data("xxzjbh", xxzjbh);
// } catch (Exception e) {
// e.printStackTrace();
// return R.error(e.getMessage());
// }
// }
//
// @PostMapping("/list")
// public R listFwbshYp(TbStZtypFwbsh fwbsh,HttpServletRequest request){
// try {
// fwbsh.setXxdjryGmsfhm(JwtUser.getUser(request).getIdentitycard());
// Map<String, Object> resultMap = ztypService.listFwbshYp(fwbsh);
// return R.ok().data(resultMap);
// } catch (Exception e) {
// e.printStackTrace();
// return R.error(e.getMessage());
// }
// }
//
// @PostMapping("/update")
// public R updateFwbshYp(TbStZtypFwbsh fwbsh,HttpServletRequest request){
// try {
// fwbsh.setUpUser(JwtUser.getUser(request));
// ztypService.updateFwbshYp(fwbsh);
// return R.ok().data("xxzjbh", fwbsh.getXxzjbh());
// } catch (Exception e) {
// e.printStackTrace();
// return R.error(e.getMessage());
// }
// }
//
// @PostMapping("/delete")
// public R deleteFwbshYp(TbStZtypFwbsh fwbsh,HttpServletRequest request){
// try {
// fwbsh.setUpUser(JwtUser.getUser(request));
// fwbsh.setXxscPdbz("1");
// ztypService.updateFwbshYp(fwbsh);
// return R.ok().data("xxzjbh", fwbsh.getXxzjbh());
// } catch (Exception e) {
// e.printStackTrace();
// return R.error(e.getMessage());
// }
// }
//
// @PostMapping("/queryAjypfx")
// @ResponseBody
// @ApiOperation(value = "案件团伙分析")
// public R queryAjypfx(AjQueryParam requestParam) {
// requestParam.setPage((requestParam.getPage()-1) * requestParam.getLimit());
// requestParam.setLimit(requestParam.getLimit());
// Integer count = ztypService.queryAjypfxCount(requestParam);
// List<AjypFxPojo> records = new ArrayList<>();
// if (count != null && count > 0) {
// records = ztypService.queryAjypfxData(requestParam);
// }
//
// return R.ok().total(count).rows(records);
// }
//
// /*@PostMapping("/getThfxAccompliceBythId")
// @ResponseBody
// @ApiOperation(value = "案件团伙分析可视化接口")
// public R getThfxAccompliceBythId(@RequestParam(value = "id") String thbh, @RequestParam(value = "fxwd") String fxwd,
// @RequestParam(value = "commonRelationshipNum") String commonRelationshipNum) {
// Map<String, Object> resultMap = ztypService.getThfxAccompliceBythId(thbh, fxwd,commonRelationshipNum);
// return R.ok().data(resultMap);
// }*/
// @PostMapping("/selectJtrwList")
// @ResponseBody
// @ApiOperation(value = "查询具体任务的list集合", notes = "查询具体任务的list集合")
// public R selectJtrwList(TbZxrwb tbZxrwb) {
// try {
// tbZxrwb.setPage((tbZxrwb.getPage()-1)*tbZxrwb.getLimit());
// tbZxrwb.setLimit(tbZxrwb.getLimit());
// Map<String, Object> map = new HashMap<>();
// List<TbZxrwb> list = ztypService.getJtrwList(tbZxrwb);
// int count = ztypService.getJtrwCount(tbZxrwb);
// map.put("rows", list);
// map.put("total", count);
// return R.ok().data(map);
// } catch (Exception e) {
// e.printStackTrace();
// return R.error(e.getMessage());
// }
// }
//
// @PostMapping("/getTransactionStatistics")
// @ResponseBody
// @ApiOperation(value = "查询交易信息分析数据", notes = "查询交易信息分析数据")
// public R getTransactionStatistics(BankCardNumPojo bankCard) {
// Map<String, Object> result = ztypService.getTransactionStatistics(bankCard);
// return R.ok().data(result);
// }
//
// @PostMapping("/getTransactionDetailByTaskId")
// @ResponseBody
// @ApiOperation(value = "获取任务的交易详情", notes = "获取任务的交易详情")
// public R getTransactionDetailByTaskId(BankCardParamPojo requestParam) {
// Map<String, Object> result = ztypService.getTransactionDetailByTaskId(requestParam);
// return R.ok().data(result);
// }
//
// @PostMapping("/getTradingTimeStatistics")
// @ResponseBody
// @ApiOperation(value = "获取交易时间规律统计", notes = "获取交易时间规律统计")
// public R getTradingTimeStatistics(BankCardParamPojo requestParam) throws ParseException {
// Map<String, Object> result = ztypService.getTradingTimeStatistics(requestParam);
// return R.ok().data(result);
// }
//
// @PostMapping("/getTradingLocationStatistics")
// @ResponseBody
// @ApiOperation(value = "获取交易地域规律统计", notes = "获取交易地域规律统计")
// public R getTradingLocationStatistics(BankCardParamPojo requestParam) {
// Map<String, Object> result = ztypService.getTradingLocationStatistics(requestParam);
// return R.ok().data(result);
// }
//
// @PostMapping("/getTradingHabitStatistics")
// @ResponseBody
// @ApiOperation(value = "获取交易习惯分析统计", notes = "获取交易习惯分析统计")
// public R getTradingHabitStatistics(BankCardParamPojo requestParam) {
// Map<String, Object> result = ztypService.getTradingHabitStatistics(requestParam);
// return R.ok().data(result);
// }
//
// @PostMapping("/getTradingFrequencyStatistics")
// @ResponseBody
// @ApiOperation(value = "获取交易频度分析统计", notes = "获取交易频度分析统计")
// public R getTradingFrequencyStatistics(BankCardParamPojo requestParam) {
// Map<String, Object> result = ztypService.getTradingFrequencyStatistics(requestParam);
// return R.ok().data(result);
// }
//
// @PostMapping("/getTradingRelationship")
// @ResponseBody
// @ApiOperation(value = "获取交易关系可视化分析", notes = "获取交易关系可视化分析")
// public R getTradingRelationship(BankCardParamPojo requestParam) {
// Map<String, Object> result = ztypService.getTradingRelationship(requestParam);
// return R.ok().data(result);
// }
//
// // 根据银行卡号查询资金流
// @PostMapping("/selectJyxxjsList")
// @ResponseBody
// @ApiOperation(value = "查询交易信息检索的list集合", notes = "查询交易信息检索的list集合")
// public R selectJyxxjsList(TbZjlxxzx tbZjlxxzx) {
// try {
//
// Map<String, Object> map = new HashMap<>();
// if (tbZjlxxzx.getBfkh() == null || "".equals(tbZjlxxzx.getBfkh())) {
// map.put("rows", new ArrayList<>());
// map.put("total", 0);
// return R.ok().data(map);
// }
// tbZjlxxzx.setPage((tbZjlxxzx.getPage()-1)*tbZjlxxzx.getLimit());
// tbZjlxxzx.setLimit(tbZjlxxzx.getLimit());
// List<TbZjlxxzx> list = tbZjlxxServcie.selectJyxxjsList(tbZjlxxzx);
// int total = tbZjlxxServcie.selectJyxxjsListCount(tbZjlxxzx);
// map.put("rows", list);
// map.put("total", total);
// return R.ok().data(map);
// } catch (Exception e) {
// e.printStackTrace();
// return R.error(e.getMessage());
// }
// }
//}
[
{
"objectvalue": "湘ALKH824",
"x": "110.628076",
"y": "19.925187",
"x": "113.02835683",
"y": "28.18856313",
"time": "2022-06-01 10:57:08",
"farimg":"http://65.26.2.173:1008/images/1.jpg",
"img":"http://65.26.2.173:1008/images/2.jpg",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路1"
"farimg":"http://47.92.48.137:1008/images/1.jpg",
"img":"http://47.92.48.137:1008/images/2.jpg",
"deviceid": "FRQWH001",
"devicename": "长沙市-芙蓉区文化馆FRQWH001",
"address": "长沙市-芙蓉区文化馆"
},
{
"objectvalue": "湘A867898",
"x": "110.628076",
"y": "19.925187",
"farimg":"http://65.26.2.173:1008/images/1.jpg",
"img":"http://65.26.2.173:1008/images/2.jpg",
"x": "113.02776717",
"y": "28.19273748",
"farimg":"http://47.92.48.137:1008/images/1.jpg",
"img":"http://47.92.48.137:1008/images/2.jpg",
"time": "2022-06-01 11:50:08",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路2"
"deviceid": "ZT001",
"devicename": "长沙市-正天(万家丽店)ZT001",
"address": "长沙市-正天(万家丽店)"
},
{
"objectvalue": "湘A867898",
"x": "110.628076",
"y": "19.925187",
"farimg":"http://65.26.2.173:1008/images/1.jpg",
"img":"http://65.26.2.173:1008/images/2.jpg",
"x": "113.02805553",
"y": "28.18960036",
"farimg":"http://47.92.48.137:1008/images/1.jpg",
"img":"http://47.92.48.137:1008/images/2.jpg",
"time": "2022-06-01 12:30:00",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路3"
"deviceid": "FRQZF001",
"devicename": "长沙市-芙蓉区政府北FRQZF001",
"address": "长沙市-芙蓉区政府北"
},
{
"objectvalue": "湘A867898",
"x": "110.628076",
"y": "19.925187",
"farimg":"http://65.26.2.173:1008/images/1.jpg",
"img":"http://65.26.2.173:1008/images/2.jpg",
"x": "113.03376407",
"y": "28.18970057",
"farimg":"http://47.92.48.137:1008/images/1.jpg",
"img":"http://47.92.48.137:1008/images/2.jpg",
"time": "2022-06-01 13:30:00",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路4"
"deviceid": "YCEX001",
"devicename": "长沙市育才二小YCEX001",
"address": "长沙市育才二小"
},
{
"objectvalue": "湘A867898",
"x": "113.03376407",
"y": "28.18970057",
"farimg":"http://47.92.48.137:1008/images/1.jpg",
"img":"http://47.92.48.137:1008/images/2.jpg",
"time": "2022-06-01 14:30:00",
"deviceid": "YCEX001",
"devicename": "长沙市育才二小YCEX001",
"address": "长沙市育才二小"
},
{
"objectvalue": "湘A867898",
"x": "113.03376407",
"y": "28.18970057",
"farimg":"http://47.92.48.137:1008/images/1.jpg",
"img":"http://47.92.48.137:1008/images/2.jpg",
"time": "2022-06-01 15:30:00",
"deviceid": "YCEX001",
"devicename": "长沙市育才二小YCEX001",
"address": "长沙市育才二小"
},
{
"objectvalue": "湘A867898",
"x": "113.03376407",
"y": "28.18970057",
"farimg":"http://47.92.48.137:1008/images/1.jpg",
"img":"http://47.92.48.137:1008/images/2.jpg",
"time": "2022-06-01 16:30:00",
"deviceid": "YCEX001",
"devicename": "长沙市育才二小YCEX001",
"address": "长沙市育才二小"
}
]
\ No newline at end of file
[
{
"objectvalue": "15754879533",
"x": "110.628076",
"y": "19.925187",
"objectvalue": "13900733224",
"x": "113.0251",
"y": "28.1942",
"time": "2022-06-01 10:57:08",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路1"
"deviceid": "WJL001",
"devicename": "长沙市-万家丽广场西WJL001",
"address": "长沙市-万家丽广场"
},
{
"objectvalue": "15754879533",
"x": "110.628076",
"y": "19.925187",
"x": "113.02627585",
"y": "28.19495863",
"time": "2022-06-01 11:50:08",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路2"
"devicename": "长沙市-赵记传承ZJCX001",
"address": "长沙市-赵记传承"
},
{
"objectvalue": "15754879533",
"x": "110.628076",
"y": "19.925187",
"objectvalue": "15735218084",
"x": "113.02861510",
"y": "28.19473466",
"time": "2022-06-01 12:30:00",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路3"
"deviceid": "JTDJD001",
"devicename": "长沙市-景天大酒店JTDJD001",
"address": "长沙市-景天大酒店JTDJD001"
},
{
"objectvalue": "15754879533",
"x": "110.628076",
"y": "19.925187",
"objectvalue": "13434077206",
"x": "113.02674726",
"y": "28.18964917",
"time": "2022-06-01 13:30:00",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路3"
"devicename": "长沙市-芙蓉区政府FRQZF0001",
"address": "长沙市-芙蓉区政府"
},
{
"objectvalue": "13900733224",
"x": "113.0251",
"y": "28.1942",
"time": "2022-06-01 14:57:08",
"deviceid": "WJL001",
"devicename": "长沙市-万家丽广场西WJL001",
"address": "长沙市-万家丽广场"
},
{
"objectvalue": "13900733224",
"x": "113.0251",
"y": "28.1942",
"time": "2022-06-01 15:30:08",
"deviceid": "WJL001",
"devicename": "长沙市-万家丽广场西WJL001",
"address": "长沙市-万家丽广场"
},
{
"objectvalue": "13900733224",
"x": "113.0251",
"y": "28.1942",
"time": "2022-06-01 16:30:08",
"deviceid": "WJL001",
"devicename": "长沙市-万家丽广场西WJL001",
"address": "长沙市-万家丽广场"
},
{
"objectvalue": "13900733224",
"x": "113.0251",
"y": "28.1942",
"time": "2022-06-01 17:30:08",
"deviceid": "WJL001",
"devicename": "长沙市-万家丽广场西WJL001",
"address": "长沙市-万家丽广场"
}
]
\ No newline at end of file
[
{
"file": "http://65.26.2.173:1008/images/5.jpg",
"xm":"张成",
"cid":"430003198912096611",
"file": "http://47.92.48.137:1008/images/5.jpg",
"xm":"黄存新",
"cid":"430123196510265891",
"score": "98.8"
},
{
"file": "http://65.26.2.173:1008/images/5.jpg",
"file": "http://47.92.48.137:1008/images/5.jpg",
"xm":"李贺",
"cid":"430003199101026617",
"score": "92.1"
},
{
"file": "http://65.26.2.173:1008/images/5.jpg",
"file": "http://47.92.48.137:1008/images/5.jpg",
"xm":"张志",
"cid":"430003199205126614",
"score": "91.1"
},
{
"file": "http://65.26.2.173:1008/images/5.jpg",
"file": "http://47.92.48.137:1008/images/5.jpg",
"xm":"何成",
"cid":"430003199005276611",
"score": "90.5"
......
[
{
"objectvalue": "430003199101026617",
"x": "110.628076",
"y": "19.925187",
"x": "113.02703819",
"y": "28.19393864",
"time": "2022-06-01 10:57:08",
"deviceid": "43000001031321014658",
"farimg":"http://65.26.2.173:1008/images/3.jpg",
"img":"http://65.26.2.173:1008/images/4.jpg",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路1"
"deviceid": "RXTH001",
"farimg":"http://47.92.48.137:1008/images/3.jpg",
"img":"http://47.92.48.137:1008/images/4.jpg",
"devicename": "长沙市-长沙泰和商务酒店RXTH001",
"address": "长沙市-长沙泰和商务酒店"
},
{
"objectvalue": "430003199101026617",
"x": "110.628076",
"y": "19.925187",
"x": "113.02747128",
"y": "28.19609690",
"time": "2022-06-01 11:50:08",
"farimg":"http://65.26.2.173:1008/images/3.jpg",
"img":"http://65.26.2.173:1008/images/4.jpg",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路1"
"farimg":"http://47.92.48.137:1008/images/3.jpg",
"img":"http://47.92.48.137:1008/images/4.jpg",
"deviceid": "RXZXX0001",
"devicename": "长沙市-智信行RXZXX0001",
"address": "长沙市-智信行"
},
{
"objectvalue": "430003199101026617",
"x": "110.628076",
"y": "19.925187",
"x": "113.02720593",
"y": "28.19225425",
"time": "2022-06-01 12:30:00",
"farimg":"http://65.26.2.173:1008/images/3.jpg",
"img":"http://65.26.2.173:1008/images/4.jpg",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路1"
"farimg":"http://47.92.48.137:1008/images/3.jpg",
"img":"http://47.92.48.137:1008/images/4.jpg",
"deviceid": "RXZT001",
"devicename": "长沙市-正天西RXZT001",
"address": "长沙市-正天西"
},
{
"objectvalue": "430003199101026617",
"x": "110.628076",
"y": "19.925187",
"x": "113.02607262",
"y": "28.18919298",
"time": "2022-06-01 13:30:00",
"farimg":"http://65.26.2.173:1008/images/3.jpg",
"img":"http://65.26.2.173:1008/images/4.jpg",
"deviceid": "43000001031321014658",
"devicename": "HSQMB-ZN1412A官沙大街与达尔登路路口2D8340",
"address": "长沙市达尔登路1"
"farimg":"http://47.92.48.137:1008/images/3.jpg",
"img":"http://47.92.48.137:1008/images/4.jpg",
"deviceid": "RXFRQ001",
"devicename": "长沙市-芙蓉区政府RXFRQ001",
"address": "长沙市-芙蓉区政府"
},
{
"objectvalue": "430003199101026617",
"x": "113.02607262",
"y": "28.18919298",
"time": "2022-06-01 14:30:00",
"farimg":"http://47.92.48.137:1008/images/3.jpg",
"img":"http://47.92.48.137:1008/images/4.jpg",
"deviceid": "RXFRQ001",
"devicename": "长沙市-芙蓉区政府RXFRQ001",
"address": "长沙市-芙蓉区政府"
},
{
"objectvalue": "430003199101026617",
"x": "113.02607262",
"y": "28.18919298",
"time": "2022-06-01 15:30:00",
"farimg":"http://47.92.48.137:1008/images/3.jpg",
"img":"http://47.92.48.137:1008/images/4.jpg",
"deviceid": "RXFRQ001",
"devicename": "长沙市-芙蓉区政府RXFRQ001",
"address": "长沙市-芙蓉区政府"
},
{
"objectvalue": "430003199101026617",
"x": "113.02607262",
"y": "28.18919298",
"time": "2022-06-01 16:30:00",
"farimg":"http://47.92.48.137:1008/images/3.jpg",
"img":"http://47.92.48.137:1008/images/4.jpg",
"deviceid": "RXFRQ001",
"devicename": "长沙市-芙蓉区政府RXFRQ001",
"address": "长沙市-芙蓉区政府"
},
{
"objectvalue": "430003199101026617",
"x": "113.02607262",
"y": "28.18919298",
"time": "2022-06-01 17:30:00",
"farimg":"http://47.92.48.137:1008/images/3.jpg",
"img":"http://47.92.48.137:1008/images/4.jpg",
"deviceid": "RXFRQ001",
"devicename": "长沙市-芙蓉区政府RXFRQ001",
"address": "长沙市-芙蓉区政府"
}
]
\ No newline at end of file
......@@ -2,22 +2,22 @@
{
"id":"1",
"time": "2022-03-01 10:57:08",
"x": "106.553860",
"y": "29.557100",
"img":"http://65.26.2.173:1008/images/5.jpg"
"x": "113.02607262",
"y": "28.18919298",
"img":"http://47.92.48.137:1008/images/5.jpg"
},
{
"id":"2",
"time": "2022-03-01 10:57:08",
"x": "113.99195",
"y": "22.838194",
"img":"http://65.26.2.173:1008/images/5.jpg"
"x": "113.02720593",
"y": "28.19225425",
"img":"http://47.92.48.137:1008/images/5.jpg"
},
{
"id":"3",
"time": "2022-03-01 10:57:08",
"x": "106.20576",
"y": "29.657100",
"img":"http://65.26.2.173:1008/images/5.jpg"
"x": "113.02607262",
"y": "28.18919298",
"img":"http://47.92.48.137:1008/images/5.jpg"
}
]
\ No newline at end of file
[
{
"objectvalue": "18754956412",
"x": "110.628076",
"y": "19.925187",
"count": "3",
"bsobjectvaluetype":"03",
"address": "长沙市达尔登路1"
},
{
"objectvalue": "18754956412",
"x": "106.553860",
"y": "29.557100",
"count": "3",
"bsobjectvaluetype":"03",
"address": "长沙市达尔登路2"
},
{
"objectvalue": "18754956412",
"x": "110.628076",
"y": "19.925187",
"count": "3",
"bsobjectvaluetype":"03",
"address": "长沙市达尔登路1"
},
{
"objectvalue": "蒙AKH824",
"x": "106.20576",
"y": "29.657100",
"count": "4",
"bsobjectvaluetype":"01",
"address": "长沙市达尔登路4"
},
{
"objectvalue": "蒙AKH824",
"x": "110.628076",
"y": "19.925187",
"count": "4",
"bsobjectvaluetype":"01",
"address": "长沙市达尔登路1"
},
{
"objectvalue": "蒙AKH824",
"x": "110.628076",
"y": "19.925187",
"count": "4",
"bsobjectvaluetype":"01",
"address": "长沙市达尔登路1"
},
{
"objectvalue": "蒙AKH824",
"x": "113.99195",
"y": "22.838194",
"bsobjectvaluetype":"01",
"count": "4",
"address": "长沙市达尔登路5"
}
]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment