| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.pms.entity.PmsProcessBillMaterialsDetail; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | public interface PmsProcessBillMaterialsDetailMapper extends BaseMapper<PmsProcessBillMaterialsDetail> { |
| | | PmsProcessBillMaterialsDetail queryByMaterialId(@Param("materialId") String materialId); |
| | | IPage<Map<String, Object>> getpmsProcessBillMaterialsDetailListData(IPage<Map> pageData, @Param("params")Map<String, String> paramMap); |
| | | /** |
| | | * 物料拉动选择物料使用 |
| | | * 根据成品、半成品物料号 查询可选择的物料数据 |
| | | * @param materialNumber 成品、半成品物料编码 |
| | | * @return |
| | | */ |
| | | List<PmsProcessBillMaterialsDetail> queryByMaterialNumber(String materialNumber); |
| | | } |