完成排产(测试过了)

This commit is contained in:
2026-03-08 16:02:44 +08:00
parent b660ddcc3e
commit 7736ac3311
125 changed files with 10418 additions and 15 deletions

View File

@@ -0,0 +1,27 @@
package com.klp.aps.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.klp.aps.domain.entity.ApsCalendarEntity;
import org.apache.ibatis.annotations.Param;
import java.time.LocalDate;
import java.util.List;
/**
* 工厂日历Mapper接口
*/
public interface ApsCalendarMapper extends BaseMapper<ApsCalendarEntity> {
/**
* 查询工厂日历列表
*/
List<ApsCalendarEntity> selectCalendarList(@Param("calendarDate") LocalDate calendarDate,
@Param("calendarType") Integer calendarType,
@Param("factoryCode") String factoryCode);
/**
* 根据日期和工厂编码查询
*/
ApsCalendarEntity selectByDateAndFactory(@Param("calendarDate") LocalDate calendarDate,
@Param("factoryCode") String factoryCode);
}