sunpengfei
2025-06-11 f7cef784a69d533ba9cd00b36d3c25fb86994f11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using LifePayment.Domain.Shared;
using System;
using Volo.Abp;
using Volo.Abp.Domain.Entities.Auditing;
 
namespace LifePayment.Domain;
 
public partial class LifePayChannles : FullAuditedEntity<Guid>, IDataUserFilter
{
    public LifePayChannles()
    {
    }
 
    public string ChannlesName { get; set; }
 
    public string ChannlesNum { get; set; }
 
    public decimal ChannlesRate { get; set; }
 
    public decimal ChannlesRakeRate { get; set; }
 
    public LifePaySwitchTypeEnum SwitchType { get; set; }
 
    public LifePayChannelsStatsEnum Status { get; set; }
 
    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 Guid? PromoterId { get; set; }
}