123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TCardlogout
- {
- public long Gid { get; set; }
- public long? AcctGid { get; set; }
- public string AcctId { get; set; }
- public long? CardId { get; set; }
- public string CardNo { get; set; }
- public byte? CardType { get; set; }
- public string Holder { get; set; }
- public string PhoneNo { get; set; }
- public int? Sno { get; set; }
- public int? LogSno { get; set; }
- public string OperNo { get; set; }
- public DateTime? LgtDate { get; set; }
- public string Carno { get; set; }
- public DateTime? KcDate { get; set; }
- public DateTime? Startdate { get; set; }
- }
- }
|