linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/common/node/TreeStringNode.java
@@ -4,7 +4,7 @@
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import lombok.Data;
import org.springblade.modules.category.dto.CategoryLabelDTO;
import org.springblade.modules.category.dto.CategoryDTO;
import java.io.Serializable;
import java.util.ArrayList;
@@ -34,6 +34,16 @@
   private String neiName;
   /**
    * 小区编码
    */
   private String aoiCode;
   /**
    * 社区编码
    */
   private String neiCode;
   /**
    * 门牌类型
    */
   private String doorplateType;
@@ -55,6 +65,26 @@
   private Integer addressType;
   /**
    * 与角色关系
    */
   private Integer relationship;
   /**
    * 是否九小场所
    */
   private Integer isNine;
   /**
    * 是否阵地
    */
   private Integer isFront;
   /**
    * 排序
    */
   private Integer sort;
   /**
    * 父节点ID
    */
   @JsonSerialize(using = ToStringSerializer.class)
@@ -68,11 +98,15 @@
   /**
    * 标签节点
    */
   private List<CategoryLabelDTO> categoryLabelList;
   private List<CategoryDTO> categoryList;
   /**
    * 是否有子孙节点
    */
   @JsonInclude(JsonInclude.Include.NON_EMPTY)
   private Boolean hasChildren;
   /**
    * 无诈类型
    */
   private Integer noExplosionCategory;
}