|
@@ -14,13 +14,13 @@ import org.fouram.core.base.controller.BaseController;
|
|
|
import org.fouram.core.plugin.weixin.cp.core.WXCpMailList;
|
|
|
import org.fouram.core.util.AppUtil;
|
|
|
import org.fouram.core.util.AppUtil.ResultConstant;
|
|
|
+import org.fouram.dto.input.GetToBeConfirmedListDTO;
|
|
|
+import org.fouram.dto.input.UpdateResultDTO;
|
|
|
import org.fouram.core.util.ConfConfig;
|
|
|
import org.fouram.core.util.DateUtil;
|
|
|
import org.fouram.core.util.ExcelExportUtil;
|
|
|
import org.fouram.core.util.LoggerUtil;
|
|
|
import org.fouram.core.util.ResultUtil;
|
|
|
-import org.fouram.dto.GetToBeConfirmedListDTO;
|
|
|
-import org.fouram.dto.UpdateResultDTO;
|
|
|
import org.fouram.entity.SapOrg;
|
|
|
import org.fouram.entity.SapUser;
|
|
|
import org.fouram.enums.DelFlagEnum;
|
|
@@ -194,7 +194,9 @@ public class ApiController extends BaseController {
|
|
|
}
|
|
|
|
|
|
@ApiImplicitParams({ @ApiImplicitParam(name = "name", value = "用户姓名", dataType = "String", paramType = "query"),
|
|
|
- @ApiImplicitParam(name = "type", value = "同步类型", dataType = "String", paramType = "query") })
|
|
|
+ @ApiImplicitParam(name = "type", value = "同步类型", dataType = "String", paramType = "query"),
|
|
|
+ @ApiImplicitParam(name = "pageNumber", value = "第几页", dataType = "Integer", paramType = "query"),
|
|
|
+ @ApiImplicitParam(name = "pageSize", value = "每页条数", dataType = "Integer", paramType = "query")})
|
|
|
@ApiOperation(value = "查询待确认员工列表")
|
|
|
@PostMapping(value = "/getToBeConfirmedList", produces = "application/json;charset=utf-8")
|
|
|
@ResponseBody
|