Commit 5086b3d2 by yangyang

湖南相关提交(湖南)

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