JKFZJCXT/BZPT.DTO/VO/TreeItem.cs

21 lines
628 B
C#
Raw Normal View History

2025-07-17 09:35:54 +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 CreateUser { 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; }
}
}