yzh
2022-05-07 28e792c272441162b15d95bdc7356d82ea3e2908
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
 
 
using System;
 
namespace Model
{
    public class GwChargeLog
    {
        public int ChargeID { get; set; }
 
        public string SpID { get; set; }
 
        public DateTime OccurTime { get; set; }
 
        public long Amount { get; set; }
 
        public string OperatorID { get; set; }
 
        public int Flag { get; set; }
 
        public DateTime FlushTime { get; set; }
 
        public string Remark { get; set; }
 
        public int PayMentType { get; set; }
 
        public int PayLogID { get; set; }
 
        public string ClientID { get; set; }
 
        public string ClientName { get; set; }
    }
}