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