|
|
@ -5,6 +5,7 @@ import java.util.List;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
|
|
|
|
import com.op.mes.domain.ProOrderWorkorder;
|
|
|
|
import com.op.mes.domain.ProOrderWorkorder;
|
|
|
|
|
|
|
|
import com.op.mes.domain.ProWetMaterialPlanDetail;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import com.op.common.log.annotation.Log;
|
|
|
|
import com.op.common.log.annotation.Log;
|
|
|
@ -29,6 +30,17 @@ public class ProWetMaterialPlanController extends BaseController {
|
|
|
|
@Autowired
|
|
|
|
@Autowired
|
|
|
|
private IProWetMaterialPlanService proWetMaterialPlanService;
|
|
|
|
private IProWetMaterialPlanService proWetMaterialPlanService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 修改湿料计划-提交接口
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param detailList
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@PutMapping("/updatePlanDetail")
|
|
|
|
|
|
|
|
public AjaxResult updateWetMaterialPlanDetail(@RequestBody List<ProWetMaterialPlanDetail> detailList) {
|
|
|
|
|
|
|
|
return proWetMaterialPlanService.updateWetMaterialPlanDetail(detailList);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 通过主计划id查询湿料计划详情list
|
|
|
|
* 通过主计划id查询湿料计划详情list
|
|
|
|
*
|
|
|
|
*
|
|
|
|