This commit is contained in:
parent
49c3380406
commit
1fb18011fa
|
|
@ -0,0 +1,17 @@
|
||||||
|
package com.nflg.product.bomnew.service.domain.ReverseReport;
|
||||||
|
|
||||||
|
import com.nflg.product.bomnew.pojo.query.ReverseReportQuery;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* EBom-反查
|
||||||
|
*/
|
||||||
|
public class EBomQuery {
|
||||||
|
/**
|
||||||
|
* 查询参数
|
||||||
|
*/
|
||||||
|
private ReverseReportQuery queryParam;
|
||||||
|
|
||||||
|
public EBomQuery(ReverseReportQuery inQueryParam){
|
||||||
|
this.queryParam=inQueryParam;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
package com.nflg.product.bomnew.service.domain.ReverseReport;
|
||||||
|
|
||||||
|
import com.nflg.product.bomnew.pojo.query.ReverseReportQuery;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MBom-反查
|
||||||
|
*/
|
||||||
|
public class MBomQuery {
|
||||||
|
/**
|
||||||
|
* 查询参数
|
||||||
|
*/
|
||||||
|
private ReverseReportQuery queryParam;
|
||||||
|
|
||||||
|
public MBomQuery(ReverseReportQuery inQueryParam){
|
||||||
|
this.queryParam=inQueryParam;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
package com.nflg.product.bomnew.service.domain.ReverseReport;
|
||||||
|
|
||||||
|
import com.nflg.product.bomnew.pojo.query.ReverseReportQuery;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 原始BOM-反查
|
||||||
|
*/
|
||||||
|
public class OriginalBomQuery {
|
||||||
|
/**
|
||||||
|
* 查询参数
|
||||||
|
*/
|
||||||
|
private ReverseReportQuery queryParam;
|
||||||
|
|
||||||
|
public OriginalBomQuery(ReverseReportQuery inQueryParam){
|
||||||
|
this.queryParam=inQueryParam;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
package com.nflg.product.bomnew.service.domain.ReverseReport;
|
||||||
|
|
||||||
|
import com.nflg.product.bomnew.pojo.query.ReverseReportQuery;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PBom-反查
|
||||||
|
*/
|
||||||
|
public class PBomQuery {
|
||||||
|
/**
|
||||||
|
* 查询参数
|
||||||
|
*/
|
||||||
|
private ReverseReportQuery queryParam;
|
||||||
|
|
||||||
|
public PBomQuery(ReverseReportQuery inQueryParam){
|
||||||
|
this.queryParam=inQueryParam;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue