gcw_MV9p2JJN a293df3710 1
2025-11-19 11:49:05 +08:00

22 lines
531 B
C#

namespace MDM.Model
{
public class SelectTreeDto
{
/// <summary>
/// 生成树参数
/// </summary>
public string Id { get; set; }
public string ParentId { get; set; }
/// <summary>
/// 树展示与反馈参数
/// </summary>
public string Label { get; set; }
public string Value { get; set; }
/// <summary>
/// 子节点(预设)
/// </summary>
public List<SelectTreeDto> Children { get; set; }
}
}