This commit is contained in:
大米 2024-02-22 17:59:47 +08:00
parent 49c3380406
commit 1fb18011fa
4 changed files with 68 additions and 0 deletions

View File

@ -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;
}
}

View File

@ -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;
}
}

View File

@ -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;
}
}

View File

@ -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;
}
}