12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TCardinfo
- {
- public long Gid { get; set; }
- public byte? CardSno { get; set; }
- public int? Sno { get; set; }
- public long CardId { get; set; }
- public string CardNo { get; set; }
- public int? Ctc { get; set; }
- public string Ctctime { get; set; }
- public long? AcctGid { get; set; }
- public string AcctId { get; set; }
- public string UserNo { get; set; }
- public string Holder { get; set; }
- public string PhoneNo { get; set; }
- public int? DmaxPay { get; set; }
- public int? MmaxPay { get; set; }
- public int? YmaxPay { get; set; }
- public int? OnceMaxPay { get; set; }
- public byte? BLimitCar { get; set; }
- public string Carno { get; set; }
- public byte? CStatus { get; set; }
- public string UserPin { get; set; }
- public DateTime? OverDate { get; set; }
- public DateTime? KcDate { get; set; }
- public string OperNo { get; set; }
- public byte? BLmtGood { get; set; }
- public string LmtOil { get; set; }
- public byte? CardType { get; set; }
- public string AuthStr { get; set; }
- public string TmpChkStr { get; set; }
- public int? DiscountNo { get; set; }
- public DateTime? Startdate { get; set; }
- public int? PreMalloc { get; set; }
- public int? Money { get; set; }
- public long? RechgTotal { get; set; }
- public int? IntegralTotal { get; set; }
- public byte? CardClass { get; set; }
- public int? Tmac { get; set; }
- public byte? LimitTimes { get; set; }
- public byte? UploadFlag { get; set; }
- public int? Ctcflag { get; set; }
- public byte? EnableSms { get; set; }
- }
- }
|