com.easy.query.api.proxy.base.SQLDateProxy Maven / Gradle / Ivy
package com.easy.query.api.proxy.base;
import com.easy.query.core.proxy.PropTypeColumn;
import java.sql.Date;
/**
* create time 2023/6/29 09:22
* 文件说明
*
* @author xuejiaming
*/
public class SQLDateProxy extends AbstractBasicProxyEntity {
public static SQLDateProxy createTable() {
return new SQLDateProxy();
}
private static final Class entityClass = java.sql.Date.class;
private SQLDateProxy() {
}
public SQLDateProxy(Date val) {
set(val);
}
public SQLDateProxy(PropTypeColumn propTypeColumn) {
set(propTypeColumn);
}
@Override
public Class getEntityClass() {
return entityClass;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy