wzp
2022-03-01 eb62f992f048d3721485d6d3c1e02a4a9a0b0ce6
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
 
using System;
 
namespace Dao
{
    public class RptCode
    {
        public string NewCode { get; set; }
 
        public string OldCode { get; set; }
 
        public DateTime CreateTime { get; set; }
 
        public string Remark { get; set; }
    }
 
    public class RptAccount
    {
        public string Spid { get; set; }
        public string Proportion { get; set; }
        public DateTime CreateTime { get; set; }
 
        public string WhitePhone { get; set; }//白名单
 
        public string TimeSpan { get; set; } //时间间隔
 
        public string Threshold { get; set; }//警戒值
 
    }
}