31 lines
719 B
C#
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;
|
|
}
|
|
}
|
|
} |