com.github.vanlla.generator.entity.system.GenInfo Maven / Gradle / Ivy
package com.github.vanlla.generator.entity.system;
import java.io.Serializable;
import java.util.List;
/**
* GenInfo
*
* @author Vanlla
* @since 1.0
*/
public class GenInfo implements Serializable {
public TableInfo table;
public List columnList;
public TableInfo getTable() {
return table;
}
public void setTable(TableInfo table) {
this.table = table;
}
public List getColumnList() {
return columnList;
}
public void setColumnList(List columnList) {
this.columnList = columnList;
}
}