19 lines
651 B
Java
19 lines
651 B
Java
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);
|
|
}
|