Commit f1ba8767 by 阳浪

我的积分 阅读文章五次

parent 4747fef3
...@@ -28,6 +28,9 @@ public class DataClassificationVo { ...@@ -28,6 +28,9 @@ public class DataClassificationVo {
@ApiModelProperty(value = "分类名称") @ApiModelProperty(value = "分类名称")
private String name; private String name;
@ApiModelProperty(value = "分类名称:title")
private String title;
@ApiModelProperty(value = "分类描述") @ApiModelProperty(value = "分类描述")
private String description; private String description;
...@@ -73,4 +76,14 @@ public class DataClassificationVo { ...@@ -73,4 +76,14 @@ public class DataClassificationVo {
protected Serializable pkVal() { protected Serializable pkVal() {
return this.id; return this.id;
} }
public String getTitle() {
this.title = this.name;
return title;
}
public void setTitle(String title) {
this.name = title;
this.title = title;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment