src.main.java.com.vincomobile.fw.basic.JSONColumnStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vincofw-basic Show documentation
Show all versions of vincofw-basic Show documentation
Vincomobile framework (Basic components)
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