xiongzhu 5 年之前
父節點
當前提交
ec9cdcbd7e
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      model/AcsEvent.cs

+ 2 - 0
model/AcsEvent.cs

@@ -7,6 +7,7 @@
         public string employNo { get; set; }
         public string cardNo { get; set; }
         public string accessTime { get; set; }
+        public bool pass { get; set; }
 
         public AcsEvent(string ip, string direction, string employNo, string cardNo, string accessTime)
         {
@@ -15,6 +16,7 @@
             this.employNo = employNo;
             this.cardNo = cardNo;
             this.accessTime = accessTime;
+            this.pass = true;
         }
     }
 }