소스 검색

用户单位树增加简称

tags/24080901
WendyYang 9 달 전
부모
커밋
121291b9f6
2개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      hz-pm-api/src/main/java/com/hz/pm/api/user/manage/MhUnitManage.java
  2. +2
    -0
      hz-pm-api/src/main/java/com/hz/pm/api/user/model/dto/MhUnitUserTreeDTO.java

+ 1
- 0
hz-pm-api/src/main/java/com/hz/pm/api/user/manage/MhUnitManage.java 파일 보기

@@ -174,6 +174,7 @@ public class MhUnitManage {
MhUnitUserTreeDTO node = new MhUnitUserTreeDTO();
node.setSort(unit.getSort());
node.setName(unit.getName());
node.setName(unit.getShortName());
node.setBizId(unit.getId());
node.setParentId(UnitUserNodeType.UNIT.name() + "#" + unit.getParentId());
node.setId(UnitUserNodeType.UNIT.name() + "#" + unit.getId());


+ 2
- 0
hz-pm-api/src/main/java/com/hz/pm/api/user/model/dto/MhUnitUserTreeDTO.java 파일 보기

@@ -24,6 +24,8 @@ public class MhUnitUserTreeDTO implements ITree<String, MhUnitUserTreeDTO> {

private String name;

private String shortName;

private Long bizId;

private UnitUserNodeType type;


불러오는 중...
취소
저장