|
|
|
|
@ -3,6 +3,7 @@ package com.ruoyi.pay.mapper;
|
|
|
|
|
import com.ruoyi.pay.domain.PayEmployeeInfo;
|
|
|
|
|
import com.ruoyi.pay.domain.vo.PayEmployeeInfoVo;
|
|
|
|
|
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
|
|
|
|
import org.apache.ibatis.annotations.Update;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 员工信息Mapper接口
|
|
|
|
|
@ -11,5 +12,6 @@ import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
|
|
|
|
* @date 2025-05-12
|
|
|
|
|
*/
|
|
|
|
|
public interface PayEmployeeInfoMapper extends BaseMapperPlus<PayEmployeeInfoMapper, PayEmployeeInfo, PayEmployeeInfoVo> {
|
|
|
|
|
|
|
|
|
|
@Update("update pay_employee_info e set e.hours_per_day = #{newHour} where e.hours_per_day = #{oldHour}")
|
|
|
|
|
int updateSgrEmployeeHour(String oldHour, String newHour);
|
|
|
|
|
}
|
|
|
|
|
|