纽威
 
 
 
 
 

10 lines
239 B

namespace NFine.Code
{
public class TreeSelectModel
{
public string id { get; set; }
public string text { get; set; }
public string parentId { get; set; }
public object data { get; set; }
}
}