完成排产(测试过了)
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.klp.aps.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.klp.aps.domain.entity.ApsCalendarShiftEntity;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 日历班次配置Mapper接口
|
||||
*/
|
||||
public interface ApsCalendarShiftMapper extends BaseMapper<ApsCalendarShiftEntity> {
|
||||
|
||||
/**
|
||||
* 根据日期、产线和班次查询
|
||||
*/
|
||||
ApsCalendarShiftEntity selectByDateLineAndShift(@Param("calendarDate") LocalDate calendarDate,
|
||||
@Param("lineId") Long lineId,
|
||||
@Param("shiftId") Long shiftId);
|
||||
|
||||
List<Long> selectDistinctLineIds();
|
||||
}
|
||||
Reference in New Issue
Block a user