Commit f49151b8 authored by 雍欢's avatar 雍欢

form

parent b1904348
package com.huigou.uasp.builder.vo;
import java.util.List;
public class EasySearchVO {
// private int isform; // 1表示是表单生成器 0 表示代码生成器
private int existAttachment;
private String []dataSourceTypes;
private String []dataSources;
private String []fieldEns;
private List<SeleListCustomVO> selectCustoms;
public int getExistAttachment() {
return existAttachment;
}
public void setExistAttachment(int existAttachment) {
this.existAttachment = existAttachment;
}
public String[] getDataSourceTypes() {
return dataSourceTypes;
}
public void setDataSourceTypes(String[] dataSourceTypes) {
this.dataSourceTypes = dataSourceTypes;
}
public String[] getDataSources() {
return dataSources;
}
public void setDataSources(String[] dataSources) {
this.dataSources = dataSources;
}
public String[] getFieldEns() {
return fieldEns;
}
public void setFieldEns(String[] fieldEns) {
this.fieldEns = fieldEns;
}
public List<SeleListCustomVO> getSelectCustoms() {
return selectCustoms;
}
public void setSelectCustoms(List<SeleListCustomVO> selectCustoms) {
this.selectCustoms = selectCustoms;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment