wzp
2021-08-09 826bce65ac9b1e5dae43fc06974b8b1284f1d12c
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;
 
namespace Model
{
    public class GwAuditCache
    {
        public string HashCode { get; set; }
 
        public string Content { get; set; }
 
        public int StrategyID { get; set; }
 
        public AuditingMode AuditingMode { get; set; }
 
        public AuditingStatus AuditingStatus { get; set; }
 
        public int DeductPercent { get; set; }
 
        public int Cnt { get; set; }
 
        public DateTime CreateTime { get; set; }
 
        public string SpID { get; set; }
 
        public string ClientID { get; set; }
 
        public string OpID { get; set; }
 
        public string Mobile { get; set; }
    }
}