Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/DictionaryTreeOutput.cs
2023-05-24 23:31:13 +08:00

17 lines
391 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entities.Dto
{
public class DictionaryTreeOutput
{
public string id { get; set; }
public string parentId { get; set; }
public List<dynamic> Child { get; set; }
public bool HasChild { get; set; }
}
}