添加hrm模块
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmAttendCalc;
|
||||
import com.ruoyi.hrm.domain.vo.HrmAttendCalcVo;
|
||||
|
||||
public interface HrmAttendCalcMapper extends BaseMapperPlus<HrmAttendCalcMapper, HrmAttendCalc, HrmAttendCalcVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmCertificate;
|
||||
import com.ruoyi.hrm.domain.vo.HrmCertificateVo;
|
||||
|
||||
public interface HrmCertificateMapper extends BaseMapperPlus<HrmCertificateMapper, HrmCertificate, HrmCertificateVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmContract;
|
||||
import com.ruoyi.hrm.domain.vo.HrmContractVo;
|
||||
|
||||
public interface HrmContractMapper extends BaseMapperPlus<HrmContractMapper, HrmContract, HrmContractVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmEmpOrgPosition;
|
||||
import com.ruoyi.hrm.domain.vo.HrmEmpOrgPositionVo;
|
||||
|
||||
public interface HrmEmpOrgPositionMapper extends BaseMapperPlus<HrmEmpOrgPositionMapper, HrmEmpOrgPosition, HrmEmpOrgPositionVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmEmployee;
|
||||
import com.ruoyi.hrm.domain.vo.HrmEmployeeVo;
|
||||
|
||||
public interface HrmEmployeeMapper extends BaseMapperPlus<HrmEmployeeMapper, HrmEmployee, HrmEmployeeVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmFlowAction;
|
||||
import com.ruoyi.hrm.domain.vo.HrmFlowActionVo;
|
||||
|
||||
public interface HrmFlowActionMapper extends BaseMapperPlus<HrmFlowActionMapper, HrmFlowAction, HrmFlowActionVo> {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmFlowCc;
|
||||
import com.ruoyi.hrm.domain.vo.HrmFlowCcVo;
|
||||
|
||||
public interface HrmFlowCcMapper extends BaseMapperPlus<HrmFlowCcMapper, HrmFlowCc, HrmFlowCcVo> {
|
||||
}
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmFlowInstance;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.ruoyi.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);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmFlowNode;
|
||||
import com.ruoyi.hrm.domain.vo.HrmFlowNodeVo;
|
||||
|
||||
public interface HrmFlowNodeMapper extends BaseMapperPlus<HrmFlowNodeMapper, HrmFlowNode, HrmFlowNodeVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmFlowTask;
|
||||
import com.ruoyi.hrm.domain.vo.HrmFlowTaskVo;
|
||||
|
||||
public interface HrmFlowTaskMapper extends BaseMapperPlus<HrmFlowTaskMapper, HrmFlowTask, HrmFlowTaskVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmFlowTemplate;
|
||||
import com.ruoyi.hrm.domain.vo.HrmFlowTemplateVo;
|
||||
|
||||
public interface HrmFlowTemplateMapper extends BaseMapperPlus<HrmFlowTemplateMapper, HrmFlowTemplate, HrmFlowTemplateVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmFormData;
|
||||
import com.ruoyi.hrm.domain.vo.HrmFormDataVo;
|
||||
|
||||
public interface HrmFormDataMapper extends BaseMapperPlus<HrmFormDataMapper, HrmFormData, HrmFormDataVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmHeadcountPlan;
|
||||
import com.ruoyi.hrm.domain.vo.HrmHeadcountPlanVo;
|
||||
|
||||
public interface HrmHeadcountPlanMapper extends BaseMapperPlus<HrmHeadcountPlanMapper, HrmHeadcountPlan, HrmHeadcountPlanVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmLeaveBalance;
|
||||
import com.ruoyi.hrm.domain.vo.HrmLeaveBalanceVo;
|
||||
|
||||
public interface HrmLeaveBalanceMapper extends BaseMapperPlus<HrmLeaveBalanceMapper, HrmLeaveBalance, HrmLeaveBalanceVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmLeaveReq;
|
||||
import com.ruoyi.hrm.domain.vo.HrmLeaveReqVo;
|
||||
|
||||
public interface HrmLeaveReqMapper extends BaseMapperPlus<HrmLeaveReqMapper, HrmLeaveReq, HrmLeaveReqVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmPayPlan;
|
||||
import com.ruoyi.hrm.domain.vo.HrmPayPlanVo;
|
||||
|
||||
public interface HrmPayPlanMapper extends BaseMapperPlus<HrmPayPlanMapper, HrmPayPlan, HrmPayPlanVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmPayRun;
|
||||
import com.ruoyi.hrm.domain.vo.HrmPayRunVo;
|
||||
|
||||
public interface HrmPayRunMapper extends BaseMapperPlus<HrmPayRunMapper, HrmPayRun, HrmPayRunVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmPayslip;
|
||||
import com.ruoyi.hrm.domain.vo.HrmPayslipVo;
|
||||
|
||||
public interface HrmPayslipMapper extends BaseMapperPlus<HrmPayslipMapper, HrmPayslip, HrmPayslipVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmPunch;
|
||||
import com.ruoyi.hrm.domain.vo.HrmPunchVo;
|
||||
|
||||
public interface HrmPunchMapper extends BaseMapperPlus<HrmPunchMapper, HrmPunch, HrmPunchVo> {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmReimburseReq;
|
||||
import com.ruoyi.hrm.domain.vo.HrmReimburseReqVo;
|
||||
|
||||
public interface HrmReimburseReqMapper extends BaseMapperPlus<HrmReimburseReqMapper, HrmReimburseReq, HrmReimburseReqVo> {
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmSchedule;
|
||||
import com.ruoyi.hrm.domain.vo.HrmScheduleVo;
|
||||
|
||||
public interface HrmScheduleMapper extends BaseMapperPlus<HrmScheduleMapper, HrmSchedule, HrmScheduleVo> {
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmSealReq;
|
||||
import com.ruoyi.hrm.domain.vo.HrmSealReqVo;
|
||||
|
||||
/**
|
||||
* 用印申请 Mapper
|
||||
*/
|
||||
public interface HrmSealReqMapper extends BaseMapperPlus<HrmSealReqMapper, HrmSealReq, HrmSealReqVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmShift;
|
||||
import com.ruoyi.hrm.domain.vo.HrmShiftVo;
|
||||
|
||||
public interface HrmShiftMapper extends BaseMapperPlus<HrmShiftMapper, HrmShift, HrmShiftVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmStatSnapshot;
|
||||
import com.ruoyi.hrm.domain.vo.HrmStatSnapshotVo;
|
||||
|
||||
public interface HrmStatSnapshotMapper extends BaseMapperPlus<HrmStatSnapshotMapper, HrmStatSnapshot, HrmStatSnapshotVo> {
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.ruoyi.hrm.mapper;
|
||||
|
||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
||||
import com.ruoyi.hrm.domain.HrmTravelReq;
|
||||
import com.ruoyi.hrm.domain.vo.HrmTravelReqVo;
|
||||
|
||||
public interface HrmTravelReqMapper extends BaseMapperPlus<HrmTravelReqMapper, HrmTravelReq, HrmTravelReqVo> {
|
||||
}
|
||||
Reference in New Issue
Block a user