6 changed files with 55 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||
package com.epmet.commons.tools.dto.result; |
|||
|
|||
import com.epmet.commons.tools.utils.TreeStringNode; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 字典数据查询-接口返参 |
|||
* @Author sun |
|||
*/ |
|||
@Data |
|||
public class DictTreeResultDTO extends TreeStringNode<DictTreeResultDTO> implements Serializable { |
|||
private static final long serialVersionUID = 3772355047088964759L; |
|||
private String label; |
|||
private String value; |
|||
} |
Loading…
Reference in new issue