You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
950 B

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Shentun.Peis.PlugIns.Extensions.ChargeRequests.YinHai
  9. {
  10. public class YinHaiSendInterfaceLogDto
  11. {
  12. public string RequestNo { get; set; }
  13. public string LogName { get; set; }
  14. /// <summary>
  15. /// 接口名称 his_server_fee_back 示例
  16. /// </summary>
  17. public string InterfaceName { get; set; }
  18. /// <summary>
  19. /// 请求参数值
  20. /// </summary>
  21. public string ParaValue { get; set; }
  22. /// <summary>
  23. /// 返回值
  24. /// </summary>
  25. public string ReturnParaValue { get; set; }
  26. /// <summary>
  27. /// 执行医生账户
  28. /// </summary>
  29. public Guid ExecDoctorUser { get; set; }
  30. }
  31. }