Commit 5086b3d2 by yangyang

湖南相关提交(湖南)

parent faaded02
...@@ -256,6 +256,7 @@ public class SkTrailController extends ApiController implements ExcelControllerI ...@@ -256,6 +256,7 @@ public class SkTrailController extends ApiController implements ExcelControllerI
@PostMapping("queryTj") @PostMapping("queryTj")
@ApiOperation(value = "轨迹信息统计") @ApiOperation(value = "轨迹信息统计")
@OperLog(message = "轨迹信息统计接口", operation = OperationType.QUERY)
public MapRestResult queryTj(@RequestBody SkTrailParam sktrailParam,HttpServletRequest request) { public MapRestResult queryTj(@RequestBody SkTrailParam sktrailParam,HttpServletRequest request) {
Map<String,String> mapResult = new HashMap<>(); Map<String,String> mapResult = new HashMap<>();
List<SkTrail> records = new ArrayList<>(); List<SkTrail> records = new ArrayList<>();
......
...@@ -937,9 +937,9 @@ public class InterfaceAPI { ...@@ -937,9 +937,9 @@ public class InterfaceAPI {
// 去kuaishou_info表中匹配通过手机号匹配到userid // 去kuaishou_info表中匹配通过手机号匹配到userid
QueryWrapper queryWrapperInfo = new QueryWrapper(); QueryWrapper queryWrapperInfo = new QueryWrapper();
queryWrapperInfo.like(StringUtils.isNotEmpty(sjhm),"phone_number",sjhm); queryWrapperInfo.like(StringUtils.isNotEmpty(sjhm),"phone_number",sjhm);
TbYwDzqqKuaishouInfo tbYwDzqqKuaishouInfo = ksInfoTrailMapper.selectOne(queryWrapperInfo); List<TbYwDzqqKuaishouInfo> tbYwDzqqKuaishouInfo = ksInfoTrailMapper.selectList(queryWrapperInfo);
if(null!=tbYwDzqqKuaishouInfo){ if(tbYwDzqqKuaishouInfo.size()>0){
userId = tbYwDzqqKuaishouInfo.getUserId(); userId = tbYwDzqqKuaishouInfo.get(0).getUserId();
} }
List<TbYwDzqqKuaishouActiveInfo> listAll = new ArrayList<>(); List<TbYwDzqqKuaishouActiveInfo> listAll = new ArrayList<>();
if(StringUtils.isNotBlank(userId)){ if(StringUtils.isNotBlank(userId)){
......
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