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