dev.zhengxiang.component.antd.AntdTransfer 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;
/**
* antd 穿梭框
* https://ant.design/components/select-cn/
*/
public class AntdTransfer {
/**
* key
*/
private String key;
/**
* 标题
*/
private String title;
/**
* 描述
*/
private String description;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}