using System;
using Volo.Abp;
using Volo.Abp.Domain.Entities.Auditing;
namespace LifePayment.Domain.LifePay
{
///
/// 分佣
///
public class LifePayChannlesRake : FullAuditedEntity, IDataUserFilter
{
public LifePayChannlesRake()
{
}
///
/// 平台订单号
///
public string OrderNo { get; set; }
///
/// 成交金额
///
public decimal PayAmount { get; set; }
///
/// 渠道佣金比例
///
public decimal ChannlesRakeRate { get; set; }
///
/// 佣金
///
public decimal ChannlesRakePrice { get; set; }
///
/// 结算时间
///
public DateTime FinishTime { get; set; }
///
/// 拓展属性
///
public string? ExtraProperties { get; set; }
///
/// 下单渠道
///
public string ChannelId { get; set; }
}
}