wzp
2022-07-12 93dbdc305bd736f5745d217e33e2ba79cc7782fe
web/Dao/RptCode.cs
@@ -1,16 +1,30 @@


using System;
namespace Dao
{
  public class RptCode
  {
    public string NewCode { get; set; }
    public class RptCode
    {
        public string NewCode { get; set; }
    public string OldCode { get; set; }
        public string OldCode { get; set; }
    public DateTime CreateTime { get; set; }
        public DateTime CreateTime { get; set; }
    public string Remark { 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; }//警戒值
    }
}