InlineParameter.java :  » IntelliJ » ibatis-plugin » org » intellij » ibatis » model » Java Open Source

Java Open Source » IntelliJ » ibatis plugin 
ibatis plugin » org » intellij » ibatis » model » InlineParameter.java
package org.intellij.ibatis.model;

/**
 * in line parameter in SQL
 */
public class InlineParameter {
    private String name;
    private String jdbcType;

    public String getName() {
        return name;
    }

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

    public String getJdbcType() {
        return jdbcType;
    }

    public void setJdbcType(String jdbcType) {
        this.jdbcType = jdbcType;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.