| 1234567891011121314151617181920212223 |
- package jnpf.base.model.dictionarydata;
- import com.fasterxml.jackson.annotation.JsonInclude;
- import lombok.Data;
- import java.util.List;
- /**
- *
- * @author JNPF开发平台组
- * @version V3.1.0
- * @copyright 引迈信息技术有限公司
- * @date 2021/3/12 15:31
- */
- @Data
- @JsonInclude(JsonInclude.Include.NON_NULL)
- public class DictionaryDataAllVO {
- private String id;
- private String fullName;
- private String parentId;
- private String enCode;
- private List<DictionaryDataAllVO> children;
- }
|