1 changed files with 49 additions and 0 deletions
@ -0,0 +1,49 @@ |
|||
/** |
|||
* Copyright (c) 2018 人人开源 All rights reserved. |
|||
* <p> |
|||
* https://www.renren.io
|
|||
* <p> |
|||
* 版权所有,侵权必究! |
|||
*/ |
|||
|
|||
package com.elink.esua.epdc.dto; |
|||
|
|||
import com.elink.esua.epdc.commons.tools.utils.TreeNode; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 网格信息 |
|||
* |
|||
* @author Mark sunlightcs@gmail.com |
|||
* @since 1.0.0 |
|||
*/ |
|||
@Data |
|||
public class AllDeptDTO extends TreeNode implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
private String deptName; |
|||
|
|||
private String deptId; |
|||
|
|||
private String streetName; |
|||
|
|||
private String streetId; |
|||
|
|||
private String communityName; |
|||
|
|||
private String communityId; |
|||
|
|||
private String gridName; |
|||
|
|||
private String gridId; |
|||
|
|||
private String gridDeptId; |
|||
|
|||
private String communityDeptId; |
|||
|
|||
private String streetDeptId; |
|||
|
|||
|
|||
} |
|||
Loading…
Reference in new issue