package com.vci.ubcs.code.vo.pagemodel;
|
|
/**
|
* 流水算法类的显示信息
|
* @author weidy
|
* @date 2022-2-17
|
*/
|
public class CodeSerialAlgorithmVO implements java.io.Serializable{
|
|
/**
|
* 算法编号
|
*/
|
private String id;
|
|
/**
|
* 类的全路径
|
*/
|
private String classFullName;
|
|
/**
|
* 类的名称
|
*/
|
private String name;
|
|
/**
|
* 描述
|
*/
|
private String description;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getClassFullName() {
|
return classFullName;
|
}
|
|
public void setClassFullName(String classFullName) {
|
this.classFullName = classFullName;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
|
@Override
|
public String toString() {
|
return "CodeSerialAlgorithmVO{" +
|
"id='" + id + '\'' +
|
", classFullName='" + classFullName + '\'' +
|
", name='" + name + '\'' +
|
", description='" + description + '\'' +
|
'}';
|
}
|
}
|