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

com.silentgo.orm.base.NameParam Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package com.silentgo.orm.base;

import com.silentgo.utils.StringKit;

/**
 * Project : SilentGo
 * Package : com.silentgo.orm.base
 *
 * @author teddyzhu
 *         

* Created by teddyzhu on 2016/10/29. */ public class NameParam { private int index; private String name; public NameParam(int index, String name) { this.index = index; this.name = name; } public int getIndex() { return index; } public void setIndex(int index) { this.index = index; } public String getName() { return name; } public void setName(String name) { this.name = name; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy