21 lines
628 B
C#
21 lines
628 B
C#
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; }
|
|
}
|
|
}
|