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

org.yes.tools.generator.io.TableIo Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package org.yes.tools.generator.io;

import org.yes.tools.generator.model.TableAttributeModel;
import org.yes.tools.generator.model.TableModel;

import java.util.List;

/**
 * @author Co.
 * @name TableIo
 * @date 2023/4/6 10:53
 */
public interface TableIo {

    Boolean saveTableAttribute(TableAttributeModel model);

    Boolean modifyTableAttribute(TableAttributeModel model);

    TableAttributeModel getTableAttribute(String menuId);

    List getTableAttributeByProjectItemId(String projectItemId);

    Boolean saveTable(TableModel model);

    Boolean modifyTable(TableModel model);

    TableModel getTable(String id);

    List getTableList(String menuId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy