|
|
@ -77,6 +77,10 @@ public class SysDepartTreeModel implements Serializable{ |
|
|
|
|
|
|
|
|
|
|
|
private Date updateTime; |
|
|
|
private Date updateTime; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private java.lang.String goodsPicture; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private java.lang.String goodsVideo; |
|
|
|
|
|
|
|
|
|
|
|
private List<SysDepartTreeModel> children = new ArrayList<>(); |
|
|
|
private List<SysDepartTreeModel> children = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -109,6 +113,8 @@ public class SysDepartTreeModel implements Serializable{ |
|
|
|
this.createTime = sysDepart.getCreateTime(); |
|
|
|
this.createTime = sysDepart.getCreateTime(); |
|
|
|
this.updateBy = sysDepart.getUpdateBy(); |
|
|
|
this.updateBy = sysDepart.getUpdateBy(); |
|
|
|
this.updateTime = sysDepart.getUpdateTime(); |
|
|
|
this.updateTime = sysDepart.getUpdateTime(); |
|
|
|
|
|
|
|
this.goodsPicture = sysDepart.getGoodsPicture(); |
|
|
|
|
|
|
|
this.goodsVideo = sysDepart.getGoodsVideo(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public boolean getIsLeaf() { |
|
|
|
public boolean getIsLeaf() { |
|
|
@ -176,6 +182,22 @@ public class SysDepartTreeModel implements Serializable{ |
|
|
|
this.parentId = parentId; |
|
|
|
this.parentId = parentId; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getGoodsPicture() { |
|
|
|
|
|
|
|
return goodsPicture; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setGoodsPicture(String goodsPicture) { |
|
|
|
|
|
|
|
this.goodsPicture = goodsPicture; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getGoodsVideo() { |
|
|
|
|
|
|
|
return goodsVideo; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setGoodsVideo(String goodsVideo) { |
|
|
|
|
|
|
|
this.goodsVideo = goodsVideo; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static long getSerialVersionUID() { |
|
|
|
public static long getSerialVersionUID() { |
|
|
|
return serialVersionUID; |
|
|
|
return serialVersionUID; |
|
|
|
} |
|
|
|
} |
|
|
@ -367,7 +389,9 @@ public class SysDepartTreeModel implements Serializable{ |
|
|
|
Objects.equals(createTime, model.createTime) && |
|
|
|
Objects.equals(createTime, model.createTime) && |
|
|
|
Objects.equals(updateBy, model.updateBy) && |
|
|
|
Objects.equals(updateBy, model.updateBy) && |
|
|
|
Objects.equals(updateTime, model.updateTime) && |
|
|
|
Objects.equals(updateTime, model.updateTime) && |
|
|
|
Objects.equals(children, model.children); |
|
|
|
Objects.equals(children, model.children)&& |
|
|
|
|
|
|
|
Objects.equals(goodsPicture, model.goodsPicture)&& |
|
|
|
|
|
|
|
Objects.equals(goodsVideo, model.goodsVideo); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -379,7 +403,7 @@ public class SysDepartTreeModel implements Serializable{ |
|
|
|
return Objects.hash(id, parentId, departName, departNameEn, departNameAbbr, |
|
|
|
return Objects.hash(id, parentId, departName, departNameEn, departNameAbbr, |
|
|
|
departOrder, description, orgCategory, orgType, orgCode, mobile, fax, address, |
|
|
|
departOrder, description, orgCategory, orgType, orgCode, mobile, fax, address, |
|
|
|
memo, status, delFlag, qywxIdentifier, createBy, createTime, updateBy, updateTime, |
|
|
|
memo, status, delFlag, qywxIdentifier, createBy, createTime, updateBy, updateTime, |
|
|
|
children); |
|
|
|
children,goodsPicture,goodsVideo); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|