TemplatePro/BZPT.DTO/VO/TreeItem.cs

20 lines
581 B
C#
Raw Normal View History

2025-03-02 23:30:03 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BZPT.Dto.VO {
public class TreeItem: IVO {
public string name { get; set; }
public string createTime { get; set; }
public string status { get; set; }
public string sort { get; set; }
public string description { get; set; }
public bool isLeaf { get; set; }
public string levelCode { get; set; }
public string id { get; set; }
public TreeItem[] children { get; set; }
}
}