forked from luyan/epmet-cloud-lingshan
7 changed files with 169 additions and 5 deletions
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.dto.result.lingshan; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2023/5/17 9:21 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class HouseTreeDTO { |
||||
|
private String id; |
||||
|
/** |
||||
|
* 小区:neighborHood |
||||
|
* 楼栋:building |
||||
|
* 单元:unit |
||||
|
* 房屋:house |
||||
|
*/ |
||||
|
private String type; |
||||
|
private String name; |
||||
|
/** |
||||
|
* 下级机关组织 |
||||
|
*/ |
||||
|
private List<HouseTreeDTO> children; |
||||
|
} |
||||
|
|
@ -0,0 +1,14 @@ |
|||||
|
package com.epmet.dto.result.lingshan; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2023/5/17 9:29 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class HouseTreeFormDTO { |
||||
|
private String gridId; |
||||
|
} |
||||
|
|
Loading…
Reference in new issue