All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.vanlla.generator.entity.system.GenInfo Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy