|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.hnac.hzims.ticket.twoTicket.service.impl; |
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.hnac.hzims.operational.main.constant.HomePageConstant; |
|
|
|
|
import com.hnac.hzims.ticket.standardTicket.entity.StandardTicketInfoEntity; |
|
|
|
@ -64,7 +65,7 @@ public class CensServiceImpl implements CensService {
|
|
|
|
|
return new ArrayList<>(); |
|
|
|
|
} |
|
|
|
|
// 操作票查询
|
|
|
|
|
LambdaQueryWrapper wrapper = new LambdaQueryWrapper(); |
|
|
|
|
QueryWrapper wrapper = new QueryWrapper(); |
|
|
|
|
if(!StringUtil.isEmpty(param.getFlowTaskName())){ |
|
|
|
|
wrapper.eq("FLOW_TASK_NAME",param.getFlowTaskName()); |
|
|
|
|
} |
|
|
|
@ -142,7 +143,7 @@ public class CensServiceImpl implements CensService {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 操作票查询
|
|
|
|
|
LambdaQueryWrapper wrapper = new LambdaQueryWrapper(); |
|
|
|
|
QueryWrapper wrapper = new QueryWrapper(); |
|
|
|
|
if(!StringUtil.isEmpty(param.getFlowTaskName())){ |
|
|
|
|
wrapper.eq("FLOW_TASK_NAME",param.getFlowTaskName()); |
|
|
|
|
} |
|
|
|
|