|
|
|
@ -55,6 +55,7 @@ import com.elink.esua.epdc.modules.item.entity.ItemHandleProcessEntity; |
|
|
|
import com.elink.esua.epdc.modules.item.entity.ItemReportInterfaceLogEntity; |
|
|
|
import com.elink.esua.epdc.modules.item.service.ItemService; |
|
|
|
import com.elink.esua.epdc.modules.item.service.PushToCityGridService; |
|
|
|
import lombok.SneakyThrows; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.apache.commons.collections4.CollectionUtils; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
@ -364,9 +365,10 @@ public class PushToCityGridServiceImpl implements PushToCityGridService { |
|
|
|
* @date 2022/9/19 9:44 |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
@SneakyThrows |
|
|
|
public Result dispatchAudit(ItemHandleProcessDTO formDTO) { |
|
|
|
/*String state = "1001";*/ |
|
|
|
|
|
|
|
Thread.sleep(130000); |
|
|
|
List<ItemHandleProcessDTO> list = new ArrayList<>(); |
|
|
|
if (null != formDTO && StringUtils.isNotBlank(formDTO.getItemId())) { |
|
|
|
ItemHandleProcessEntity entity = itemHandleProcessDao.selectById(formDTO.getId()); |
|
|
|
@ -1223,8 +1225,10 @@ public class PushToCityGridServiceImpl implements PushToCityGridService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
@SneakyThrows |
|
|
|
public void appealAudit(String processId) { |
|
|
|
// 诉求审核,固定在结案之前,查询结案数据即可
|
|
|
|
Thread.sleep(130000); |
|
|
|
ItemHandleProcessEntity entity = itemHandleProcessDao.selectById(processId); |
|
|
|
// 拼接数据
|
|
|
|
AppealAuditResultDTO dto = new AppealAuditResultDTO(); |
|
|
|
|