Files
zszq-trs/YLErpWeb/Models/TreeNode.cs
T
2024-05-09 14:06:26 +08:00

31 lines
719 B
C#

namespace YLErp.Web.Models
{
public class TreeNode : TreeBase
{
public string tag { get; set; }
public string area { get; set; }
public string tel { get; set; }
public string state { get; set; }
}
public class VarietyUnderlyingTree : TreeBase
{
public string type { get; set; }
}
public class TreeBase
{
public int id { get; set; }
public int pId { get; set; }
public bool open { get; set; }
public string name { get; set; }
public string code { get; set; }
public string description { get; set; }
public override string ToString()
{
return name;
}
}
}