zhengyuxuan
2025-03-27 efe34d38d7270a48682cfc57a21eabf0125d1cab
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -1100,4 +1100,40 @@
public class ChannelRateOutput
{
    public decimal ChannlesRate { get; set; }
}
public class OnlineServiceInput
{
    /// <summary>
    /// 在线客服链接
    /// </summary>
    public string Link { get; set; }
}
public class LifePayRechargeReceiptsListOutput
{
    /// <summary>
    /// 编号
    /// </summary>
    public Guid Id { get; set; }
    /// <summary>
    /// 业务订单号
    /// </summary>
    public string OrderNo { get; set; }
    /// <summary>
    /// 充值金额
    /// </summary>
    public decimal RechargeAmount { get; set; }
    /// <summary>
    /// 备注
    /// </summary>
    public string Remark { get; set; }
    /// <summary>
    /// 凭证
    /// </summary>
    public string Voucher { get; set; }
}