package com.chinaztt.mes.plan.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.chinaztt.mes.plan.dto.MasterProductionScheduleTheoryQuantityDTO;
|
import com.chinaztt.mes.plan.entity.MasterProductionScheduleTheoryQuantity;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* 生产计划半成品理论生产用量
|
*
|
* @author xucg
|
* @date 2022-05-19
|
*/
|
@Mapper
|
public interface MasterProductionScheduleTheoryQuantityMapper extends BaseMapper<MasterProductionScheduleTheoryQuantity> {
|
|
List<MasterProductionScheduleTheoryQuantityDTO> getTheoryQuantity(Long id);
|
|
}
|