dev.zhengxiang.component.antd.table.AntdDataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of frontend Show documentation
Show all versions of frontend Show documentation
Frontend component object
The newest version!
package dev.zhengxiang.component.antd.table;
/**
* antd 表格 一行数据
* 需要继承,增加新的数据数据列
*/
public class AntdDataSource {
/**
* 唯一key
*/
private String key;
/* getter setter */
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
}