package com.vci.dto;
|
|
import java.util.List;
|
|
public class PRMDTO implements java.io.Serializable {
|
|
private static final long serialVersionUID = -9069714336905186990L;
|
/**
|
* 显示多少列,默认为3列
|
*/
|
private String showCols = "3";
|
/**
|
* 表单名称
|
*/
|
private String formQtName = "";
|
private List<PRMItemDTO> prmItemList;
|
|
public String getShowCols() {
|
return showCols;
|
}
|
|
public void setShowCols(String showCols) {
|
this.showCols = showCols;
|
}
|
|
public String getFormQtName() {
|
return formQtName;
|
}
|
|
public void setFormQtName(String formQtName) {
|
this.formQtName = formQtName;
|
}
|
|
public List<PRMItemDTO> getPrmItemList() {
|
return prmItemList;
|
}
|
|
public void setPrmItemList(List<PRMItemDTO> prmItemList) {
|
this.prmItemList = prmItemList;
|
}
|
|
@Override
|
public String toString() {
|
return "PRMVO{" +
|
"showCols='" + showCols + '\'' +
|
", formQtName='" + formQtName + '\'' +
|
", prmItemList=" + prmItemList +
|
'}';
|
}
|
}
|