|
@@ -16,7 +16,7 @@ import org.fouram.core.util.ConfConfig;
|
|
|
import org.fouram.core.util.JSONUtil;
|
|
|
import org.fouram.core.util.JsonNodeUtil;
|
|
|
import org.fouram.core.util.Tools;
|
|
|
-import org.fouram.dto.input.GetCancelIngoreListDTO;
|
|
|
+import org.fouram.dto.input.GetIngoreListDTO;
|
|
|
import org.fouram.dto.input.GetToBeConfirmedListDTO;
|
|
|
import org.fouram.dto.output.GetCancelIngoreListOutput;
|
|
|
import org.fouram.dto.output.GetToBeConfirmedListOutput;
|
|
@@ -395,7 +395,7 @@ public class SapUserService extends BaseService {
|
|
|
pd.put("pageSize", String.valueOf(dto.getPageSize()));
|
|
|
}
|
|
|
List<SapUser> data = (List<SapUser>) findList("SapUserMapper.selectToBeConfirmedPrimaryList", pd);
|
|
|
- Long total = (Long) findObject("SapUserMapper.selectToBeConfirmedPrimaryTotal", dto);
|
|
|
+ Long total = (Long) findObject("SapUserMapper.selectToBeConfirmedPrimaryTotal", pd);
|
|
|
return GetToBeConfirmedListOutput.builder().data(toInfoDetails(data)).total(total).build();
|
|
|
}
|
|
|
|
|
@@ -420,7 +420,7 @@ public class SapUserService extends BaseService {
|
|
|
}
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
- public GetCancelIngoreListOutput selectCancelIngorePrimaryList(GetCancelIngoreListDTO dto) throws Exception {
|
|
|
+ public GetCancelIngoreListOutput selectIngorePrimaryList(GetIngoreListDTO dto) throws Exception {
|
|
|
PageData pd = new PageData();
|
|
|
pd.put("name", dto.getName());
|
|
|
pd.put("result", SapUserResultEnum.INGORE.getCode());
|
|
@@ -428,8 +428,8 @@ public class SapUserService extends BaseService {
|
|
|
pd.put("pageCurrent", String.valueOf(dto.getPageSize() * (dto.getPageNumber() - 1)));
|
|
|
pd.put("pageSize", String.valueOf(dto.getPageSize()));
|
|
|
}
|
|
|
- List<SapUser> data = (List<SapUser>) findList("SapUserMapper.selectCancelIngorePrimaryList", pd);
|
|
|
- Long total = (Long) findObject("SapUserMapper.selectCancelIngorePrimaryTotal", dto);
|
|
|
+ List<SapUser> data = (List<SapUser>) findList("SapUserMapper.selectIngorePrimaryList", pd);
|
|
|
+ Long total = (Long) findObject("SapUserMapper.selectIngorePrimaryTotal", pd);
|
|
|
return GetCancelIngoreListOutput.builder().data(toInfoDetails(data)).total(total).build();
|
|
|
}
|
|
|
}
|