sunpengfei
2025-06-09 168b8baf0147c0c8f9f49d6f024a86c3b3e47b22
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace LifePayment.Application.Contracts
{
    public class SyncLifePayConsumption
    {
        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 OrderNo { get; set; }
        public string AcoolyOrderNo { get; set; }
        public decimal? Amount { get; set; }
        public int? ACOOLYStatus { get; set; }
        public int? FrozenStatus { get; set; }
        public int? Flow { get; set; }
        public decimal? DeductionAmount { get; set; }
        public DateTime? FinishTime { get; set; }
        public string ChannelId { get; set; }
        public decimal? FrozenAmount { get; set; }
    }
}