package com.rthoni.intellij.codefromds.dbo.template; /** * Created by robin on 4/13/17. */ public class SqlTypeDbo { private String _type; private String vagueArg; public String getType() { return _type; } public void setType(String type) { _type = type; } public String getVagueArg() { return vagueArg; } public void setVagueArg(String vagueArg) { this.vagueArg = vagueArg; } }