...
This commit is contained in:
parent
92542c2ad8
commit
368d78f48f
|
@ -233,8 +233,11 @@ public class AbilityCenterControllerV3 {
|
||||||
auditingBaseDTO.setCompleteEntry(Boolean.TRUE); // 首次录入
|
auditingBaseDTO.setCompleteEntry(Boolean.TRUE); // 首次录入
|
||||||
auditingBaseDTO.setFlowType("能力申请");
|
auditingBaseDTO.setFlowType("能力申请");
|
||||||
|
|
||||||
|
// TODO
|
||||||
if (user.getDeptId() != null) {
|
if (user.getDeptId() != null) {
|
||||||
SysDeptDTO applyUserDeptDTO = sysDeptService.get(user.getDeptId()); // 发起人的部门
|
SysDeptDTO applyUserDeptDTO = sysDeptService.get(user.getDeptId()); // 发起人的部门
|
||||||
|
applyUserDeptDTO.getType(); // 发起人
|
||||||
|
sysDeptDTO.getType(); // 资源所属部门
|
||||||
}
|
}
|
||||||
|
|
||||||
Map<String, Object> variables = oMapper.convertValue(auditingBaseDTO, Map.class);
|
Map<String, Object> variables = oMapper.convertValue(auditingBaseDTO, Map.class);
|
||||||
|
|
|
@ -82,6 +82,11 @@ public class SysDeptDTO extends TreeNode implements Serializable {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 类型:1省级部门,2市级部门,3区级部门,4企业
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
public Integer getType() {
|
public Integer getType() {
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue