20 lines
581 B
C#
20 lines
581 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 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; }
|
|
}
|
|
}
|