forked from rongchao/epmet-cloud-rizhao
6 changed files with 41 additions and 12 deletions
@ -0,0 +1,23 @@ |
|||
package com.epmet.resi.partymember.dto.partyOrg.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @program: epmet-cloud |
|||
* @description: |
|||
* @author: wangtong |
|||
* @create: 2022-05-30 10:11 |
|||
**/ |
|||
@Data |
|||
public class BranchlistTreeDTO implements Serializable { |
|||
|
|||
private String label; |
|||
|
|||
private String value; |
|||
|
|||
private List<BranchlistTreeDTO> children = new ArrayList<>(); |
|||
} |
Loading…
Reference in new issue