完成排产(测试过了)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user