123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- namespace Dfs.WayneChina.SpsDataCourier.Guard
- {
- public class CardUpload
- {
- [Key]
- public long Id { get; set; }
-
-
-
- public long Gid { get; set; }
-
-
-
- [Required]
- public string CardNo { get; set; }
-
-
-
- public byte Operation { get; set; }
-
-
-
- public int Status { get; set; }
-
-
-
- public DateTime OperationTime { get; set; }
- }
- }
|