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

com.easy.query.api.proxy.base.ByteProxy Maven / Gradle / Ivy

There is a newer version: 2.0.106
Show newest version
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