|
@ -20,7 +20,7 @@ public class KnowledgeCategoryDO extends UuidIdentityEntity {
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
private Date updateTime; // 编辑时间
|
|
|
private Integer del; // 是否删除,1正常,0删除'
|
|
|
private Long pid; // 父id
|
|
|
private String pid; // 父id
|
|
|
|
|
|
|
|
|
public String getName() {
|
|
@ -55,11 +55,11 @@ public class KnowledgeCategoryDO extends UuidIdentityEntity {
|
|
|
this.del = del;
|
|
|
}
|
|
|
|
|
|
public Long getPid() {
|
|
|
public String getPid() {
|
|
|
return pid;
|
|
|
}
|
|
|
|
|
|
public void setPid(Long pid) {
|
|
|
public void setPid(String pid) {
|
|
|
this.pid = pid;
|
|
|
}
|
|
|
}
|