package com.chinaztt.mes.plan.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.chinaztt.mes.plan.dto.MoOutBatchDTO;
|
import com.chinaztt.mes.plan.entity.MoOutBatch;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* 制造订单产出批次表
|
*
|
* @author cxf
|
* @date 2020-09-27 16:19:33
|
*/
|
@Mapper
|
public interface MoOutBatchMapper extends BaseMapper<MoOutBatch> {
|
/**
|
* 根据制造订单id查询产出批次
|
*
|
* @param id
|
* @return
|
*/
|
List<MoOutBatchDTO> selectMoOutBatchByManufacturingOrderId(Long id);
|
}
|