|
|
@@ -54,8 +54,12 @@ public class OrgResponse extends PageInfo<OrgResponse> implements Serializable {
|
|
|
@Excel(name = "组织名称")
|
|
|
@ApiModelProperty(value = "组织名称")
|
|
|
private String orgName;
|
|
|
-
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 子级长度
|
|
|
+ */
|
|
|
+ @Excel(name = "子级长度")
|
|
|
+ @ApiModelProperty(value = "子级长度")
|
|
|
+ private Long itemDataLength;
|
|
|
/**
|
|
|
* 父级ID
|
|
|
*/
|
|
|
@@ -64,7 +68,12 @@ public class OrgResponse extends PageInfo<OrgResponse> implements Serializable {
|
|
|
@TableField(typeHandler = UuidTypeHandler.class)
|
|
|
private String parentId;
|
|
|
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 父级名称
|
|
|
+ */
|
|
|
+ @Excel(name = "父级名称")
|
|
|
+ @ApiModelProperty(value = "父级名称")
|
|
|
+ private String parentName;
|
|
|
/**
|
|
|
* 显示顺序 (【1 ~ 46655】)
|
|
|
*/
|