WdkAiotOrgPropParentResponse.cs 868 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// WdkAiotOrgPropParentResponse.
  8. /// </summary>
  9. public class WdkAiotOrgPropParentResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 机构树json
  13. /// </summary>
  14. [XmlElement("data")]
  15. public string Data { get; set; }
  16. /// <summary>
  17. /// 错误信息
  18. /// </summary>
  19. [XmlElement("msg_code")]
  20. public string MsgCode { get; set; }
  21. /// <summary>
  22. /// 错误码
  23. /// </summary>
  24. [XmlElement("msg_info")]
  25. public string MsgInfo { get; set; }
  26. /// <summary>
  27. /// 成功失败结果
  28. /// </summary>
  29. [XmlElement("succeed")]
  30. public bool Succeed { get; set; }
  31. }
  32. }