ZtreeInfo.cs 459 B

12345678910111213141516171819202122
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using YiSha.Util;
  8. namespace YiSha.Model.Result
  9. {
  10. public class ZtreeInfo
  11. {
  12. //[JsonConverter(typeof(StringJsonConverter))]
  13. public int id { get; set; }
  14. //[JsonConverter(typeof(StringJsonConverter))]
  15. public int pId { get; set; }
  16. public string name { get; set; }
  17. }
  18. }