1 Star 0 Fork 131

bercz/codeMan

forked from 小螺旋丸/codeMan 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TablesQueryModel.java 2.12 KB
一键复制 编辑 原始数据 按行查看 历史
package entity;
import java.io.Serializable;
import java.util.List;
public class TablesQueryModel implements Serializable {
private static final long serialVersionUID = -1678171896562196592L;
//from sql
private String formSql;
//表与表的关系部分
private List<TableRelationModel> tableRelationModelLists;
//查询的字段
private List<TableFiledModel> tableFiledModels;
//条件字段
private List<TableConditionModel> tableConditionModels;
//方法中文名
private String methodName_cn;
//方法实体名
private String entityName;
//方法实体中文名
private String entityName_cn;
public String getFormSql() {
return formSql;
}
public void setFormSql(String formSql) {
this.formSql = formSql;
}
public List<TableRelationModel> getTableRelationModelLists() {
return tableRelationModelLists;
}
public void setTableRelationModelLists(List<TableRelationModel> tableRelationModelLists) {
this.tableRelationModelLists = tableRelationModelLists;
}
public List<TableFiledModel> getTableFiledModels() {
return tableFiledModels;
}
public void setTableFiledModels(List<TableFiledModel> tableFiledModels) {
this.tableFiledModels = tableFiledModels;
}
public List<TableConditionModel> getTableConditionModels() {
return tableConditionModels;
}
public void setTableConditionModels(List<TableConditionModel> tableConditionModels) {
this.tableConditionModels = tableConditionModels;
}
public String getMethodName_cn() {
return methodName_cn;
}
public void setMethodName_cn(String methodName_cn) {
this.methodName_cn = methodName_cn;
}
public String getEntityName() {
return entityName;
}
public void setEntityName(String entityName) {
this.entityName = entityName;
}
public String getEntityName_cn() {
return entityName_cn;
}
public void setEntityName_cn(String entityName_cn) {
this.entityName_cn = entityName_cn;
}
@Override
public String toString() {
return "TablesQueryModel [formSql=" + formSql + ", tableRelationModelLists=" + tableRelationModelLists
+ ", tableFiledModels=" + tableFiledModels + ", tableConditionModels=" + tableConditionModels + "]";
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/bercz/codeMan.git
git@gitee.com:bercz/codeMan.git
bercz
codeMan
codeMan
master

搜索帮助