mirror of https://gitee.com/stylefeng/roses
【7.2.5】【org】删除没用的接口
parent
33befe5ae5
commit
07b1f8e761
|
@ -32,15 +32,6 @@ public interface HrOrgApproverService extends IService<HrOrgApprover> {
|
||||||
*/
|
*/
|
||||||
void del(HrOrgApproverRequest hrOrgApproverRequest);
|
void del(HrOrgApproverRequest hrOrgApproverRequest);
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑
|
|
||||||
*
|
|
||||||
* @param hrOrgApproverRequest 请求参数
|
|
||||||
* @author fengshuonan
|
|
||||||
* @date 2022/09/13 23:15
|
|
||||||
*/
|
|
||||||
void edit(HrOrgApproverRequest hrOrgApproverRequest);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询详情
|
* 查询详情
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
package cn.stylefeng.roses.kernel.system.modular.organization.service.impl;
|
package cn.stylefeng.roses.kernel.system.modular.organization.service.impl;
|
||||||
|
|
||||||
import cn.hutool.core.bean.BeanUtil;
|
|
||||||
import cn.hutool.core.util.ObjectUtil;
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
import cn.stylefeng.roses.kernel.rule.exception.base.ServiceException;
|
import cn.stylefeng.roses.kernel.rule.exception.base.ServiceException;
|
||||||
import cn.stylefeng.roses.kernel.system.api.UserServiceApi;
|
import cn.stylefeng.roses.kernel.system.api.UserServiceApi;
|
||||||
|
@ -97,13 +96,6 @@ public class HrOrgApproverServiceImpl extends ServiceImpl<HrOrgApproverMapper, H
|
||||||
this.remove(hrOrgApproverLambdaQueryWrapper);
|
this.remove(hrOrgApproverLambdaQueryWrapper);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void edit(HrOrgApproverRequest hrOrgApproverRequest) {
|
|
||||||
HrOrgApprover hrOrgApprover = this.queryHrOrgApprover(hrOrgApproverRequest);
|
|
||||||
BeanUtil.copyProperties(hrOrgApproverRequest, hrOrgApprover);
|
|
||||||
this.updateById(hrOrgApprover);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public HrOrgApprover detail(HrOrgApproverRequest hrOrgApproverRequest) {
|
public HrOrgApprover detail(HrOrgApproverRequest hrOrgApproverRequest) {
|
||||||
return this.queryHrOrgApprover(hrOrgApproverRequest);
|
return this.queryHrOrgApprover(hrOrgApproverRequest);
|
||||||
|
|
Loading…
Reference in New Issue