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

com.easy.query.api.proxy.base.ByteArrayProxy 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 ByteArrayProxy extends AbstractBasicProxyEntity {
    public static ByteArrayProxy createTable() {
        return new ByteArrayProxy();
    }
    private static final Class entityClass = Byte[].class;


    private ByteArrayProxy() {
    }
    public ByteArrayProxy(Byte[] val) {
        set(val);
    }

    public ByteArrayProxy(PropTypeColumn propTypeColumn) {
        set(propTypeColumn);
    }

    @Override
    public Class getEntityClass() {
        return entityClass;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy