添加获取机构信息接口
This commit is contained in:
parent
b5bcecc194
commit
02981291b2
|
|
@ -80,4 +80,8 @@ public class SysConfig implements Serializable {
|
|||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||
@ApiModelProperty(value = "更新日期")
|
||||
private java.util.Date updateTime;
|
||||
/**类型*/
|
||||
@ApiModelProperty(value = "类型")
|
||||
@Dict(dicCode = "config_type")
|
||||
private java.lang.String configType;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -210,6 +210,7 @@ public class SysDepart implements Serializable {
|
|||
private String oldDirectorUserIds;
|
||||
//update-end---author:wangshuai ---date:20200308 for:[JTC-119]新增字段负责人ids和旧的负责人ids
|
||||
|
||||
private String picUrl;
|
||||
/**
|
||||
* 重写equals方法
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -109,6 +109,7 @@ public class SysDepartTreeModel implements Serializable {
|
|||
|
||||
private List<SysDepartTreeModel> children = new ArrayList<>();
|
||||
|
||||
private String picUrl;
|
||||
|
||||
/**
|
||||
* 将SysDepart对象转换成SysDepartTreeModel对象
|
||||
|
|
@ -150,6 +151,7 @@ public class SysDepartTreeModel implements Serializable {
|
|||
this.updateTime = sysDepart.getUpdateTime();
|
||||
this.directorUserIds = sysDepart.getDirectorUserIds();
|
||||
this.payableAmount = sysDepart.getPayableAmount();
|
||||
this.picUrl = sysDepart.getPicUrl();
|
||||
if (0 == sysDepart.getIzLeaf()) {
|
||||
this.isLeaf = false;
|
||||
} else {
|
||||
|
|
@ -461,6 +463,14 @@ public class SysDepartTreeModel implements Serializable {
|
|||
this.contractEndTime = contractEndTime;
|
||||
}
|
||||
|
||||
public String getPicUrl() {
|
||||
return picUrl;
|
||||
}
|
||||
|
||||
public void setPicUrl(String picUrl) {
|
||||
this.picUrl = picUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
* 重写equals方法
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue