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

com.dream.template.sequence.SequenceWrapper Maven / Gradle / Ivy

package com.dream.template.sequence;

import com.dream.system.table.TableInfo;

public interface SequenceWrapper extends Sequence {

    /**
     * 返回查询的字段
     *
     * @param tableInfo 主表详情
     * @return
     */
    default String[] columnNames(TableInfo tableInfo) {
        return new String[0];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy