MarkModelResponse.cs 876 B

12345678910111213141516171819202122232425262728
  1. using ivf_tl_Entity.Entity.Mark;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ivf_tl_Entity.Response
  9. {
  10. public class MarkModelResponse
  11. {
  12. public long id { get; set; }
  13. public int child { get; set; }
  14. public int defaultValue { get; set; }
  15. public long keyId { get; set; }
  16. public int keyNode { get; set; }
  17. public string markKey { get; set; }
  18. public long model { get; set; }
  19. public string name { get; set; }
  20. public int orderNum { get; set; }
  21. public long parentId { get; set; }
  22. public int state { get; set; }
  23. public int unit { get; set; }
  24. public decimal weight { get; set; }
  25. public int level { get; set; }
  26. }
  27. }