package com.vci.dto;
|
|
|
/**
|
* 枚举项数据传输对象
|
* @author ludc
|
* @date 2024/7/17 14:23
|
*/
|
public class OsEnumItemDTO implements java.io.Serializable{
|
|
private static final long serialVersionUID = -900528102L;
|
|
private String name;
|
|
private String value;
|
|
private String description;
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
}
|