sunpengfei
2025-06-10 5b1e0cd79b93ffb4c784ad15886066623845f9e3
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
48
49
50
51
52
53
54
55
56
57
58
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace LifePayment.Application.Contracts
{
    public class SyncLifePayOrder
    {
        public Guid Id { get; set; }
        public Guid? UserId { 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; }
        public string ExtraProperties { get; set; }
        public string ConcurrencyStamp { get; set; }
        public string PhoneNumber { get; set; }
        public int? LifePayType { get; set; }
        public int? LifePayOrderType { get; set; }
        public string OrderNo { get; set; }
        public decimal? RechargeAmount { get; set; }
        public decimal? DiscountAmount { get; set; }
        public decimal? PayAmount { get; set; }
        public DateTime? PayTime { get; set; }
        public int? PayStatus { get; set; }
        public string OutOrderNo { get; set; }
        public int? LifePayOrderStatus { get; set; }
        public DateTime? FinishTime { get; set; }
        public string RefundCredentialsImgUrl { get; set; }
        public string OrderParamDetailJsonStr { get; set; }
        public string OutRequestNo { get; set; }
        public string ACOOLYOrderNo { get; set; }
        public string RefundApplyRemark { get; set; }
        public string RefundCheckRemark { get; set; }
        public DateTime? RefundTime { get; set; }
        public Guid? RefundCheckUserId { get; set; }
        public string ChannelId { get; set; }
        public DateTime? RefundApplyTime { get; set; }
        public decimal? PlatformDeductionAmount { get; set; }
        public int? ACOOLYStatus { get; set; }
        public decimal? ActualRechargeAmount { get; set; }
        public int? LifePayRefundStatus { get; set; }
        public decimal? RefundPrice { get; set; }
        public string RefundOrderNo { get; set; }
        public string ElecBillUrl { get; set; }
        public string RefundElecBillUrl { get; set; }
        public decimal? ActualReceivedAmount { get; set; }
        public decimal? PlatformRate { get; set; }
        public decimal? ChannleRate { get; set; }
        public decimal? ChannlesRakeRate { get; set; }
        public decimal? PremiumRate { get; set; }
    }
}