湿料计划管理(计划导出)
parent
f41fcabf8a
commit
d59136a945
@ -0,0 +1,16 @@
|
||||
package com.op.plan.service;
|
||||
|
||||
import com.op.plan.domain.ProWetMaterialPlan;
|
||||
import com.op.plan.domain.ProWetMaterialPlanDetail;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface IProWetMaterialPlanDetailService {
|
||||
|
||||
/**
|
||||
* 导出湿料计划
|
||||
* @param proWetMaterialPlan
|
||||
* @return
|
||||
*/
|
||||
List<ProWetMaterialPlanDetail> selectProWetMaterialPlanDetailList(ProWetMaterialPlan proWetMaterialPlan);
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package com.op.plan.service.impl;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.plan.domain.ProWetMaterialPlan;
|
||||
import com.op.plan.domain.ProWetMaterialPlanDetail;
|
||||
import com.op.plan.mapper.ProWetMaterialPlanDetailMapper;
|
||||
import com.op.plan.service.IProWetMaterialPlanDetailService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
public class ProWetMaterialPlanDetailServiceImpl implements IProWetMaterialPlanDetailService {
|
||||
@Autowired
|
||||
private ProWetMaterialPlanDetailMapper proWetMaterialPlanDetailMapper;
|
||||
|
||||
/**
|
||||
* 导出湿料计划
|
||||
* @param proWetMaterialPlan
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<ProWetMaterialPlanDetail> selectProWetMaterialPlanDetailList(ProWetMaterialPlan proWetMaterialPlan) {
|
||||
return proWetMaterialPlanDetailMapper.selectWetPlanList(proWetMaterialPlan);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue