|
@ -1,6 +1,7 @@ |
|
|
package com.epmet.commons.tools.dto.result; |
|
|
package com.epmet.commons.tools.dto.result; |
|
|
|
|
|
|
|
|
import com.epmet.commons.tools.utils.TreeStringNode; |
|
|
import com.epmet.commons.tools.utils.TreeStringNode; |
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnore; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
import java.io.Serializable; |
|
@ -12,6 +13,10 @@ import java.io.Serializable; |
|
|
@Data |
|
|
@Data |
|
|
public class DictTreeResultDTO extends TreeStringNode<DictTreeResultDTO> implements Serializable { |
|
|
public class DictTreeResultDTO extends TreeStringNode<DictTreeResultDTO> implements Serializable { |
|
|
private static final long serialVersionUID = 3772355047088964759L; |
|
|
private static final long serialVersionUID = 3772355047088964759L; |
|
|
private String label; |
|
|
/** |
|
|
private String value; |
|
|
* 上级ID |
|
|
|
|
|
*/ |
|
|
|
|
|
@JsonIgnore |
|
|
|
|
|
private String pid; |
|
|
|
|
|
private String name; |
|
|
} |
|
|
} |
|
|