|
@@ -18,7 +18,7 @@ import org.fouram.core.util.JsonNodeUtil;
|
|
|
import org.fouram.core.util.Tools;
|
|
|
import org.fouram.dto.input.GetIngoreListDTO;
|
|
|
import org.fouram.dto.input.GetToBeConfirmedListDTO;
|
|
|
-import org.fouram.dto.output.GetCancelIngoreListOutput;
|
|
|
+import org.fouram.dto.output.GetIngoreListOutput;
|
|
|
import org.fouram.dto.output.GetToBeConfirmedListOutput;
|
|
|
import org.fouram.entity.SapOrg;
|
|
|
import org.fouram.entity.SapUser;
|
|
@@ -420,7 +420,7 @@ public class SapUserService extends BaseService {
|
|
|
}
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
- public GetCancelIngoreListOutput selectIngorePrimaryList(GetIngoreListDTO dto) throws Exception {
|
|
|
+ public GetIngoreListOutput selectIngorePrimaryList(GetIngoreListDTO dto) throws Exception {
|
|
|
PageData pd = new PageData();
|
|
|
pd.put("name", dto.getName());
|
|
|
pd.put("result", SapUserResultEnum.INGORE.getCode());
|
|
@@ -430,6 +430,6 @@ public class SapUserService extends BaseService {
|
|
|
}
|
|
|
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();
|
|
|
+ return GetIngoreListOutput.builder().data(toInfoDetails(data)).total(total).build();
|
|
|
}
|
|
|
}
|