zhengyiming
4 天以前 83b72e32a89988dd721ef7bc8ea673751092fb4a
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -460,6 +460,30 @@
    public LifePayChannlesTypeEnum ChannlesType { get; set; }
    /// <summary>
    /// 代理类型
    /// </summary>
    public LifePayChannelAgentType? AgentType { get; set; }
    /// <summary>
    /// 区域-省Id
    /// </summary>
    public int? AreaProvinceId { get; set; }
    /// <summary>
    /// 区域-市Id
    /// </summary>
    public int? AreaCityId { get; set; }
    /// <summary>
    /// 推广员ID
    /// </summary>
    public string PromoterIdNumber { get; set; }
    /// <summary>
    /// 推广员
    /// </summary>
    public string PromoterName { get; set; }
}
public class QueryUserAccountListInput : ChannelsBaseInput
@@ -858,4 +882,51 @@
public class TopStatisticsInput
{
    public List<string>? ChannleList { get; set; }
}
public class QueryLifePayChannlesInput
{
    public LifePayChannelsStatsEnum? Status { get; set; }
}
public class GetLifePayRateOutput
{
    public decimal SupplierRate { get; set; }
    public decimal Rate { get; set; }
}
public class GetRefundPlatformTradeDetailOutput
{
    /// <summary>
    /// 订单号
    /// </summary>
    public string OrderNo { get; set; }
    /// <summary>
    /// 退款订单号
    /// </summary>
    public string RefundOrderNo { get; set; }
    /// <summary>
    /// 退款申请时间
    /// </summary>
    public DateTime? RefundTime { get; set; }
    /// <summary>
    /// 退款成功时间
    /// </summary>
    public DateTime? RefundSuccessTime { get; set; }
    public RefundPlatformStatusEnum RefundPlatformStatus { get; set; }
    /// <summary>
    /// 渠道流水号
    /// </summary>
    public string OutOrderNo { get; set; }
    /// <summary>
    /// 支付渠道
    /// </summary>
    public LifePayTypeEnum LifePayType { get; set; }
}