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

src.main.java.com.vincomobile.fw.basic.JSONColumnStructure Maven / Gradle / Ivy

There is a newer version: 5.1.0-RELEASE
Show newest version
package com.vincomobile.fw.basic;

/**
 * Created by yokiro on 09/11/2015.
 */
public class JSONColumnStructure{

    private String name;
    private String cType;
    private boolean primaryKey;

    public JSONColumnStructure(){}

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getcType() {
        return cType;
    }

    public void setcType(String cType) {
        this.cType = cType;
    }

    public boolean isPrimaryKey() {
        return primaryKey;
    }

    public void setPrimaryKey(boolean primaryKey) {
        this.primaryKey = primaryKey;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy