
com.github.wendao76.core.entity.TableObj Maven / Gradle / Ivy
package com.github.wendao76.core.entity;
import lombok.Data;
import java.util.List;
/**
* 数据表对象
* @author wendao76
*/
@Data
public class TableObj {
private String primaryKey = "";
/**
* 字段列表
*/
private List columnList;
/**
* 标明
*/
private String name;
/**
* 中文标明
*/
private String cnName;
/**
* 注释
*/
private String comment;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy