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

com.easy.query.api.proxy.base.IntegerProxy 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;
import com.easy.query.core.proxy.predicate.aggregate.DSLSQLFunctionAvailable;

/**
 * create time 2023/6/29 09:22
 * 文件说明
 *
 * @author xuejiaming
 */
public class IntegerProxy extends AbstractBasicProxyEntity {
    public static IntegerProxy createTable() {
        return new IntegerProxy();
    }

    private static final Class entityClass = Integer.class;

    private IntegerProxy() {
    }
    public IntegerProxy(Integer val) {
        set(val);
    }


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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy