完成排产(测试过了)

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,18 @@
package com.klp.aps.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.klp.aps.domain.entity.ApsLineCapabilityEntity;
import org.apache.ibatis.annotations.Param;
/**
* 产线能力Mapper接口
*/
public interface ApsLineCapabilityMapper extends BaseMapper<ApsLineCapabilityEntity> {
/**
* 根据产线、产品、工序查询
*/
ApsLineCapabilityEntity selectByLineProductAndProcess(@Param("lineId") Long lineId,
@Param("productId") Long productId,
@Param("processId") Long processId);
}