设备管理

This commit is contained in:
gcw_MV9p2JJN
2025-09-23 15:11:18 +08:00
parent 657d1b7ab6
commit 308ca6df79
66 changed files with 7276 additions and 17 deletions

21
ZR.Model/TreeDto.cs Normal file
View File

@@ -0,0 +1,21 @@
namespace DOAN.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; }
}
}