bank
This commit is contained in:
@ -0,0 +1,63 @@
|
||||
package com.xjrsoft.module.mdm.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import com.xjrsoft.common.model.tree.ITreeNode;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @title: 分页列表出参
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class LngBRegionTreeVo implements ITreeNode<LngBRegionTreeVo,String>, Serializable{
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@ApiModelProperty("主键")
|
||||
private String id;
|
||||
/**
|
||||
* 助记码
|
||||
*/
|
||||
@ApiModelProperty("助记码")
|
||||
private String code;
|
||||
/**
|
||||
* 名称(不能重复)
|
||||
*/
|
||||
@ApiModelProperty("名称(不能重复)")
|
||||
private String fullName;
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
@ApiModelProperty("类型")
|
||||
//@Trans(type = TransType.DIC, id = "1980458729324212226")
|
||||
private String regionTypeCode;
|
||||
/**
|
||||
* 上级ID
|
||||
*/
|
||||
@ApiModelProperty("上级ID")
|
||||
private Long pid;
|
||||
|
||||
@ApiModelProperty("上级ID")
|
||||
private String parentId;
|
||||
/**
|
||||
* 全路径名称
|
||||
*/
|
||||
@ApiModelProperty("全路径名称")
|
||||
private String fullPath;
|
||||
/**
|
||||
* 有效标志(Y-有效,N-无效)
|
||||
*/
|
||||
@ApiModelProperty("有效标志(Y-有效,N-无效)")
|
||||
//@Trans(type = TransType.DIC, id = "1978057078528327681")
|
||||
private String valid;
|
||||
|
||||
private List<LngBRegionTreeVo> children;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user