办公V3
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package com.klp.hrm.mapper;
|
||||
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
import com.klp.hrm.domain.HrmFlowCc;
|
||||
import com.klp.hrm.domain.vo.HrmFlowCcVo;
|
||||
|
||||
public interface HrmFlowCcMapper extends BaseMapperPlus<HrmFlowCcMapper, HrmFlowCc, HrmFlowCcVo> {
|
||||
}
|
||||
|
||||
@@ -2,7 +2,17 @@ package com.klp.hrm.mapper;
|
||||
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
import com.klp.hrm.domain.HrmFlowInstance;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.klp.hrm.domain.vo.HrmFlowInstanceVo;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface HrmFlowInstanceMapper extends BaseMapperPlus<HrmFlowInstanceMapper, HrmFlowInstance, HrmFlowInstanceVo> {
|
||||
|
||||
IPage<HrmFlowInstanceVo> selectMyInstancePageWithBiz(
|
||||
Page<?> page,
|
||||
@Param("startUserId") Long startUserId,
|
||||
@Param("bizType") String bizType,
|
||||
@Param("status") String status);
|
||||
}
|
||||
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
package com.klp.hrm.mapper;
|
||||
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
import com.klp.hrm.domain.HrmGrade;
|
||||
import com.klp.hrm.domain.vo.HrmGradeVo;
|
||||
|
||||
public interface HrmGradeMapper extends BaseMapperPlus<HrmGradeMapper, HrmGrade, HrmGradeVo> {
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
package com.klp.hrm.mapper;
|
||||
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
import com.klp.hrm.domain.HrmOrg;
|
||||
import com.klp.hrm.domain.vo.HrmOrgVo;
|
||||
|
||||
public interface HrmOrgMapper extends BaseMapperPlus<HrmOrgMapper, HrmOrg, HrmOrgVo> {
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
package com.klp.hrm.mapper;
|
||||
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
import com.klp.hrm.domain.HrmOvertimeReq;
|
||||
import com.klp.hrm.domain.vo.HrmOvertimeReqVo;
|
||||
|
||||
public interface HrmOvertimeReqMapper extends BaseMapperPlus<HrmOvertimeReqMapper, HrmOvertimeReq, HrmOvertimeReqVo> {
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
package com.klp.hrm.mapper;
|
||||
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
import com.klp.hrm.domain.HrmPosition;
|
||||
import com.klp.hrm.domain.vo.HrmPositionVo;
|
||||
|
||||
public interface HrmPositionMapper extends BaseMapperPlus<HrmPositionMapper, HrmPosition, HrmPositionVo> {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.klp.hrm.mapper;
|
||||
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
import com.klp.hrm.domain.HrmReimburseReq;
|
||||
import com.klp.hrm.domain.vo.HrmReimburseReqVo;
|
||||
|
||||
public interface HrmReimburseReqMapper extends BaseMapperPlus<HrmReimburseReqMapper, HrmReimburseReq, HrmReimburseReqVo> {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user