Explorar el Código

用户单位树增加简称

tags/24080901
WendyYang hace 9 meses
padre
commit
121291b9f6
Se han modificado 2 ficheros con 3 adiciones y 0 borrados
  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 Ver fichero

@@ -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 Ver fichero

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

private String name;

private String shortName;

private Long bizId;

private UnitUserNodeType type;


Cargando…
Cancelar
Guardar