You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
584 B
18 lines
584 B
package com.ruoyi.pay.mapper;
|
|
|
|
import com.ruoyi.pay.domain.PayDwHoursContrast;
|
|
import com.ruoyi.pay.domain.vo.PayDwHoursContrastVo;
|
|
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
|
import org.apache.ibatis.annotations.Delete;
|
|
|
|
/**
|
|
* 日工工时时间关联Mapper接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2025-05-12
|
|
*/
|
|
public interface PayDwHoursContrastMapper extends BaseMapperPlus<PayDwHoursContrastMapper, PayDwHoursContrast, PayDwHoursContrastVo> {
|
|
@Delete("delete from pay_dw_hours_contrast where dw_hours_id = #{id}")
|
|
int deleteSgrDwHoursContrastByDwHoursId(Long id);
|
|
}
|