Esempio n. 1
0
 public CICCard()
 {
     meType   = EnmICCardType.Temp;
     meStatus = EnmICCardStatus.Normal;
     mCDtime  = DateTime.Now;
     msAddrs  = "";
 }
Esempio n. 2
0
 //ID不可用
 public CICCard(string sCard, string sPCard, EnmICCardType etype, EnmICCardStatus estatus, DateTime losstime, DateTime duetime, int oweddays, int uid, string pnmd, DateTime cdt, string address, DateTime disposetime)
     : base(0, sCard)
 {
     mPhysicCode  = sPCard;
     meType       = etype;
     meStatus     = estatus;
     mLosstime    = losstime;
     mDuetime     = duetime;
     mOwedDays    = oweddays;
     mnUid        = uid;         //固定卡时,用户ID
     msPlatNumber = pnmd;
     mCDtime      = cdt;         //创建卡时间
     msAddrs      = address;
     mdDDtime     = disposetime; //注销时间
 }