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

cn.schoolwow.quickdao.module.entity.kit.TableDefiner Maven / Gradle / Ivy

There is a newer version: 5.3.1
Show newest version
package cn.schoolwow.quickdao.module.entity.kit;

import cn.schoolwow.quickdao.QuickDAO;
import cn.schoolwow.quickdao.domain.database.ddl.IndexField;

/**
 * 自定义表
 */
public interface TableDefiner {
    /**
     * 映射表名
     */
    TableDefiner tableName(String tableName);

    /**
     * 注释
     */
    TableDefiner comment(String comment);

    /**
     * 建立索引
     */
    TableDefiner index(IndexField indexField);

    /**
     * 处理列
     */
    TablePropertyDefiner property(String fieldName);

    /**
     * 结束
     */
    QuickDAO done();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy