25 lines
878 B
Java
25 lines
878 B
Java
package com.evo.ding.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.evo.ding.domain.DingShiftGroup;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* DingsShiftGroupMapper
|
|
*
|
|
* @author andy.shi
|
|
* @ClassName:DingsShiftGroupMapper
|
|
* @date: 2026年03月05日 14:47
|
|
* @remark: 开发人员联系方式 1042025947@qq.com/微信同步
|
|
*/
|
|
public interface DingShiftGroupMapper extends BaseMapper<DingShiftGroup> {
|
|
|
|
DingShiftGroup selectByGroupIdAndTypeAndCheckTime(@Param("groupId") String groupId, @Param("shiftId")String shiftId, @Param("type") String type, @Param("checkTime") String checkTime);
|
|
|
|
int updateCheckTimeByShiftIdAndType(@Param("shiftId")String shiftId, @Param("type")String type, @Param("checkTime")String checkTime);
|
|
|
|
List<DingShiftGroup> selectListByShiftId(@Param("shiftId") String shiftId);
|
|
}
|