package com.whyc.dto;
|
|
import com.whyc.pojo.ProductBomApproving;
|
import com.whyc.pojo.WorksheetMain;
|
|
import java.util.List;
|
|
public class WorksheetMainDTO {
|
private WorksheetMain main;
|
private List<ProductBomApproving> bomList;
|
|
public WorksheetMain getMain() {
|
return main;
|
}
|
|
public void setMain(WorksheetMain main) {
|
this.main = main;
|
}
|
|
public List<ProductBomApproving> getBomList() {
|
return bomList;
|
}
|
|
public void setBomList(List<ProductBomApproving> bomList) {
|
this.bomList = bomList;
|
}
|
}
|