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

org.wing4j.orm.Entity Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.wing4j.orm;

import lombok.Data;
import lombok.ToString;

import java.util.ArrayList;
import java.util.List;

/**
 * 实体基类
 */
@Data
@ToString
public abstract class Entity {
    /**
     * 数据库模式
     */
    @Ignore
    protected String schema;
    /**
     * 排序字段
     */
    @Ignore
    protected final List orderBys = new ArrayList<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy