L3HRM后端推送

This commit is contained in:
2025-12-16 16:56:14 +08:00
parent 5ac2e78a33
commit 62c541839e
221 changed files with 8280 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmAttendCalc;
import com.klp.hrm.domain.vo.HrmAttendCalcVo;
public interface HrmAttendCalcMapper extends BaseMapperPlus<HrmAttendCalcMapper, HrmAttendCalc, HrmAttendCalcVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmCertificate;
import com.klp.hrm.domain.vo.HrmCertificateVo;
public interface HrmCertificateMapper extends BaseMapperPlus<HrmCertificateMapper, HrmCertificate, HrmCertificateVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmContract;
import com.klp.hrm.domain.vo.HrmContractVo;
public interface HrmContractMapper extends BaseMapperPlus<HrmContractMapper, HrmContract, HrmContractVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmEmpOrgPosition;
import com.klp.hrm.domain.vo.HrmEmpOrgPositionVo;
public interface HrmEmpOrgPositionMapper extends BaseMapperPlus<HrmEmpOrgPositionMapper, HrmEmpOrgPosition, HrmEmpOrgPositionVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmEmployee;
import com.klp.hrm.domain.vo.HrmEmployeeVo;
public interface HrmEmployeeMapper extends BaseMapperPlus<HrmEmployeeMapper, HrmEmployee, HrmEmployeeVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmFlowAction;
import com.klp.hrm.domain.vo.HrmFlowActionVo;
public interface HrmFlowActionMapper extends BaseMapperPlus<HrmFlowActionMapper, HrmFlowAction, HrmFlowActionVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmFlowInstance;
import com.klp.hrm.domain.vo.HrmFlowInstanceVo;
public interface HrmFlowInstanceMapper extends BaseMapperPlus<HrmFlowInstanceMapper, HrmFlowInstance, HrmFlowInstanceVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmFlowNode;
import com.klp.hrm.domain.vo.HrmFlowNodeVo;
public interface HrmFlowNodeMapper extends BaseMapperPlus<HrmFlowNodeMapper, HrmFlowNode, HrmFlowNodeVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmFlowTask;
import com.klp.hrm.domain.vo.HrmFlowTaskVo;
public interface HrmFlowTaskMapper extends BaseMapperPlus<HrmFlowTaskMapper, HrmFlowTask, HrmFlowTaskVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmFlowTemplate;
import com.klp.hrm.domain.vo.HrmFlowTemplateVo;
public interface HrmFlowTemplateMapper extends BaseMapperPlus<HrmFlowTemplateMapper, HrmFlowTemplate, HrmFlowTemplateVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmFormData;
import com.klp.hrm.domain.vo.HrmFormDataVo;
public interface HrmFormDataMapper extends BaseMapperPlus<HrmFormDataMapper, HrmFormData, HrmFormDataVo> {
}

View File

@@ -0,0 +1,8 @@
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> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmHeadcountPlan;
import com.klp.hrm.domain.vo.HrmHeadcountPlanVo;
public interface HrmHeadcountPlanMapper extends BaseMapperPlus<HrmHeadcountPlanMapper, HrmHeadcountPlan, HrmHeadcountPlanVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmLeaveBalance;
import com.klp.hrm.domain.vo.HrmLeaveBalanceVo;
public interface HrmLeaveBalanceMapper extends BaseMapperPlus<HrmLeaveBalanceMapper, HrmLeaveBalance, HrmLeaveBalanceVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmLeaveReq;
import com.klp.hrm.domain.vo.HrmLeaveReqVo;
public interface HrmLeaveReqMapper extends BaseMapperPlus<HrmLeaveReqMapper, HrmLeaveReq, HrmLeaveReqVo> {
}

View File

@@ -0,0 +1,8 @@
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> {
}

View File

@@ -0,0 +1,8 @@
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> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmPayPlan;
import com.klp.hrm.domain.vo.HrmPayPlanVo;
public interface HrmPayPlanMapper extends BaseMapperPlus<HrmPayPlanMapper, HrmPayPlan, HrmPayPlanVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmPayRun;
import com.klp.hrm.domain.vo.HrmPayRunVo;
public interface HrmPayRunMapper extends BaseMapperPlus<HrmPayRunMapper, HrmPayRun, HrmPayRunVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmPayslip;
import com.klp.hrm.domain.vo.HrmPayslipVo;
public interface HrmPayslipMapper extends BaseMapperPlus<HrmPayslipMapper, HrmPayslip, HrmPayslipVo> {
}

View File

@@ -0,0 +1,8 @@
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> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmPunch;
import com.klp.hrm.domain.vo.HrmPunchVo;
public interface HrmPunchMapper extends BaseMapperPlus<HrmPunchMapper, HrmPunch, HrmPunchVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmSchedule;
import com.klp.hrm.domain.vo.HrmScheduleVo;
public interface HrmScheduleMapper extends BaseMapperPlus<HrmScheduleMapper, HrmSchedule, HrmScheduleVo> {
}

View File

@@ -0,0 +1,11 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmSealReq;
import com.klp.hrm.domain.vo.HrmSealReqVo;
/**
* 用印申请 Mapper
*/
public interface HrmSealReqMapper extends BaseMapperPlus<HrmSealReqMapper, HrmSealReq, HrmSealReqVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmShift;
import com.klp.hrm.domain.vo.HrmShiftVo;
public interface HrmShiftMapper extends BaseMapperPlus<HrmShiftMapper, HrmShift, HrmShiftVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmStatSnapshot;
import com.klp.hrm.domain.vo.HrmStatSnapshotVo;
public interface HrmStatSnapshotMapper extends BaseMapperPlus<HrmStatSnapshotMapper, HrmStatSnapshot, HrmStatSnapshotVo> {
}

View File

@@ -0,0 +1,8 @@
package com.klp.hrm.mapper;
import com.klp.common.core.mapper.BaseMapperPlus;
import com.klp.hrm.domain.HrmTravelReq;
import com.klp.hrm.domain.vo.HrmTravelReqVo;
public interface HrmTravelReqMapper extends BaseMapperPlus<HrmTravelReqMapper, HrmTravelReq, HrmTravelReqVo> {
}