sunpengfei
9 天以前 484de131314a90144cceac6ea721e345ad014f08
LifePayment/LifePayment.Domain/LifePay/LifePayRateChannel.cs
New file
@@ -0,0 +1,48 @@
using LifePayment.Domain.Shared;
using System;
using Volo.Abp;
using Volo.Abp.Domain.Entities.Auditing;
namespace LifePayment.Domain;
public partial class LifePayRateChannel : FullAuditedEntity<Guid>, IDataUserFilter
{
    public LifePayRateChannel()
    {
    }
    /// <summary>
    /// 充值类型
    /// </summary>
    public LifePayOrderTypeEnum LifePayOrderType { get; set; }
    /// <summary>
    /// 通道
    /// </summary>
    public string RateChannelName { get; set; }
    /// <summary>
    /// ID
    /// </summary>
    public string Code { get; set; }
    /// <summary>
    /// 供应商折扣
    /// </summary>
    public decimal SupplierRate { get; set; }
    /// <summary>
    /// 平台折扣
    /// </summary>
    public decimal PlatformRate { get; set; }
    /// <summary>
    /// 通道状态
    /// </summary>
    public LifePayRateChannelStatus Status { get; set; }
    /// <summary>
    /// 通知内容
    /// </summary>
    public string Remark { get; set; }
}