|
|
|
@ -1,18 +1,20 @@
|
|
|
|
|
package com.op.mes.service;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
import com.op.common.core.domain.R;
|
|
|
|
|
import com.op.mes.domain.MesPrepare;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 备料单Service接口
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @author Open Platform
|
|
|
|
|
* @date 2023-08-03
|
|
|
|
|
*/
|
|
|
|
|
public interface IMesPrepareService {
|
|
|
|
|
/**
|
|
|
|
|
* 查询备料单
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param prepareId 备料单主键
|
|
|
|
|
* @return 备料单
|
|
|
|
|
*/
|
|
|
|
@ -20,7 +22,7 @@ public interface IMesPrepareService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询备料单列表
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param mesPrepare 备料单
|
|
|
|
|
* @return 备料单集合
|
|
|
|
|
*/
|
|
|
|
@ -28,7 +30,7 @@ public interface IMesPrepareService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增备料单
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param mesPrepare 备料单
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
@ -36,7 +38,7 @@ public interface IMesPrepareService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改备料单
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param mesPrepare 备料单
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
@ -44,7 +46,7 @@ public interface IMesPrepareService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除备料单
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param prepareIds 需要删除的备料单主键集合
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
@ -52,9 +54,11 @@ public interface IMesPrepareService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除备料单信息
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param prepareId 备料单主键
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public int deleteMesPrepareByPrepareId(String prepareId);
|
|
|
|
|
|
|
|
|
|
public R getMesPrepare();
|
|
|
|
|
}
|
|
|
|
|