zhengyiming
2025-06-09 758a83d713c7212175fc06ce498d3b5ac1430872
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace LifePayment.Application.Contracts.Sync
{
    public class SyncLifePayChannles
    {
        public Guid Id { get; set; }
        public string ChannlesName { get; set; }
        public string ChannlesNum { get; set; }
        public decimal? ChannlesRate { get; set; }
        public decimal? ChannlesRakeRate { get; set; }
        public int? ChannlesType { get; set; }
        public int? SwitchType { get; set; }
        public int? Status { get; set; }
        public DateTime? CreationTime { get; set; }
        public Guid? CreatorId { get; set; }
        public DateTime? LastModificationTime { get; set; }
        public Guid? LastModifierId { get; set; }
        public bool? IsDeleted { get; set; }
        public Guid? DeleterId { get; set; }
        public DateTime? DeletionTime { get; set; }
    }
}