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; }
///
/// 接口名称 his_server_fee_back 示例
///
public string InterfaceName { get; set; }
///
/// 请求参数值
///
public string ParaValue { get; set; }
///
/// 返回值
///
public string ReturnParaValue { get; set; }
///
/// 执行医生账户
///
public Guid ExecDoctorUser { get; set; }
}
}