org.wing4j.orm.Entity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wing4j-orm-api Show documentation
Show all versions of wing4j-orm-api Show documentation
This is the wing4j-orm member wing4j-orm-api
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<>();
}