123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDbManager.ResultSet
- {
-
-
-
-
- public class CheckCardResult
- {
-
-
-
-
- public ulong Max_Mon { get; set; }
-
-
-
-
- public long BalPay_Day { get; set; }
-
-
-
-
- public long OnceMaxPay { get; set; }
-
-
-
-
- public long DiscountNo { get; set; }
-
-
-
-
- public long CStatus { get; set; }
-
-
-
-
- public long CStateLen { get; set; }
-
-
-
-
- public string CState { get; set; }
-
-
-
-
- public int ReturnVar { get; set; }
- }
- public class CardResult
- {
- public int ReturnValue { get; set; }
- public CardState CardStatus { get; set; }
- public ulong MaxAllowedAmount { get; set; }
- public uint MaxAmountPerTrx { get; set; }
- public int TrxRestrictionIndicator { get; set; }
- public uint DiscountNo { get; set; }
-
-
-
- public long CardStateDescLen { get; set; }
- public string CardStateDescription { get; set; }
- }
- public enum CardState
- {
-
-
-
-
- Ok = 0,
-
-
-
-
- Lost = 1,
-
-
-
-
- Closed = 2,
-
-
-
-
- Expired = 3,
-
-
-
-
- Error = 4,
-
-
-
-
- NoInfo = 5,
-
-
-
-
- AccountFrosen = 6
- }
- }
|