17 lines
443 B
Java
17 lines
443 B
Java
package com.klp.aps.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.klp.aps.domain.entity.ApsShiftTemplateEntity;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* 班次模板Mapper接口
|
|
*/
|
|
public interface ApsShiftTemplateMapper extends BaseMapper<ApsShiftTemplateEntity> {
|
|
|
|
/**
|
|
* 根据班次编码查询
|
|
*/
|
|
ApsShiftTemplateEntity selectByShiftCode(@Param("shiftCode") String shiftCode);
|
|
}
|