2026-06-08 15:42:29 +08:00
|
|
|
package com.fad.aps.mapper;
|
2026-06-08 15:31:31 +08:00
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
2026-06-08 15:42:29 +08:00
|
|
|
import com.fad.aps.domain.entity.ApsShiftTemplateEntity;
|
2026-06-08 15:31:31 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 班次模板Mapper接口
|
|
|
|
|
*/
|
|
|
|
|
public interface ApsShiftTemplateMapper extends BaseMapper<ApsShiftTemplateEntity> {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据班次编码查询
|
|
|
|
|
*/
|
|
|
|
|
ApsShiftTemplateEntity selectByShiftCode(@Param("shiftCode") String shiftCode);
|
|
|
|
|
}
|