OsfbpmRobotTestResponse.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. /// OsfbpmRobotTestResponse.
  8. /// </summary>
  9. public class OsfbpmRobotTestResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 错误码
  13. /// </summary>
  14. [XmlElement("error_codee")]
  15. public long ErrorCodee { get; set; }
  16. /// <summary>
  17. /// 错误信息
  18. /// </summary>
  19. [XmlElement("error_msge")]
  20. public string ErrorMsge { get; set; }
  21. /// <summary>
  22. /// 饿啊的
  23. /// </summary>
  24. [XmlElement("result")]
  25. public string Result { get; set; }
  26. /// <summary>
  27. /// 调用是否成功
  28. /// </summary>
  29. [XmlElement("successe")]
  30. public bool Successe { get; set; }
  31. }
  32. }