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.
|
|
using System;using System.Collections.Generic;using System.ComponentModel.DataAnnotations;using System.ComponentModel.DataAnnotations.Schema;using System.Linq;using System.Text;using System.Threading.Tasks;
namespace Shentun.Peis.PlugIns.Extensions.ChargeRequests.YinHai{ public class YinHaiSendInterfaceLogDto { public string RequestNo { get; set; }
public string LogName { get; set; }
/// <summary>
/// 接口名称 his_server_fee_back 示例
/// </summary>
public string InterfaceName { get; set; }
/// <summary>
/// 请求参数值
/// </summary>
public string ParaValue { get; set; }
/// <summary>
/// 返回值
/// </summary>
public string ReturnParaValue { get; set; }
/// <summary>
/// 执行医生账户
/// </summary>
public Guid ExecDoctorUser { get; set; }
}}
|