新增根据表名获得e-builder信息接口

main
liuliang 2 weeks ago
parent 0823f962a6
commit 219bb2d960

@ -9,7 +9,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
public class EmployeeCommonController { public class BaseCommonController {
@Autowired @Autowired
private HrmCommonUtil hrmCommonUtil; private HrmCommonUtil hrmCommonUtil;
@Autowired @Autowired

@ -3,7 +3,7 @@ package com.weaver.seconddev.jcl.organization.controller;
import com.weaver.common.authority.annotation.WeaPermission; import com.weaver.common.authority.annotation.WeaPermission;
import com.weaver.common.base.entity.result.WeaResult; import com.weaver.common.base.entity.result.WeaResult;
import com.weaver.seconddev.jcl.common.web.EmployeeCommonController; import com.weaver.seconddev.jcl.common.web.BaseCommonController;
import com.weaver.seconddev.jcl.organization.entity.Employee; import com.weaver.seconddev.jcl.organization.entity.Employee;
import com.weaver.seconddev.jcl.organization.entity.PendingEmployee; import com.weaver.seconddev.jcl.organization.entity.PendingEmployee;
import com.weaver.seconddev.jcl.organization.service.EmployeeInformationService; import com.weaver.seconddev.jcl.organization.service.EmployeeInformationService;
@ -27,7 +27,7 @@ import java.util.Map;
@Slf4j @Slf4j
@RestController @RestController
@RequestMapping("/api/secondev/jcl/employeeInformation") @RequestMapping("/api/secondev/jcl/employeeInformation")
public class EmployeeInformationController extends EmployeeCommonController { public class EmployeeInformationController extends BaseCommonController {
@Autowired @Autowired
private EmployeeInformationService employeeInformationService; private EmployeeInformationService employeeInformationService;

Loading…
Cancel
Save