wangsheng
2022-03-22 e1190c55b49d8f3ee89fa1bd715aa579395d98ed
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;
 
namespace Dao
{
    public class GwSpPrePattern
    {
        public int PatternID { get; set; }
 
        private string clientID;
 
        public string SpID { get; set; }
 
        public string PatternContent { get; set; }
 
        public DateTime CreateTime { get; set; }
 
        public DateTime AuditTime { get; set; }
 
        public int AuditStatus { get; set; }
 
        public string AuditRemark { get; set; }
 
        public string OperateAccount { get; set; }
 
        public string ClientID { get => clientID; set => clientID = value; }
    }
}