eBOM-反查
This commit is contained in:
parent
820d7496e7
commit
7ed3b87555
|
|
@ -1,6 +1,11 @@
|
||||||
package com.nflg.product.bomnew.service.domain.ReverseReport;
|
package com.nflg.product.bomnew.service.domain.ReverseReport;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableList;
|
||||||
|
import com.nflg.product.bomnew.constant.ReportConstant;
|
||||||
import com.nflg.product.bomnew.pojo.query.ReverseReportQuery;
|
import com.nflg.product.bomnew.pojo.query.ReverseReportQuery;
|
||||||
|
import com.nflg.product.bomnew.pojo.vo.ReverseReportVO;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* EBom-反查
|
* EBom-反查
|
||||||
|
|
@ -14,4 +19,26 @@ public class EBomQuery {
|
||||||
public EBomQuery(ReverseReportQuery inQueryParam){
|
public EBomQuery(ReverseReportQuery inQueryParam){
|
||||||
this.queryParam=inQueryParam;
|
this.queryParam=inQueryParam;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public List<ReverseReportVO> report() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单层报表
|
||||||
|
*/
|
||||||
|
public void singleLevelReport() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 多层
|
||||||
|
* @param drawingNos
|
||||||
|
*/
|
||||||
|
public void multipleLevelReport(List<String> drawingNos) {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue