cn.vonce.sql.bean.Original Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
package cn.vonce.sql.bean;
import java.io.Serializable;
/**
* 原始的值(既不会对它进行任何处理,传入什么即是什么)
*/
public class Original implements Serializable {
public Original(Object value) {
this.value = value;
}
private Object value;
public Object getValue() {
return value;
}
@Override
public String toString() {
return "Original{" +
"value='" + value + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy