ListedCardInfo.cs 664 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDataCourier
  5. {
  6. public class ListedCardInfo
  7. {
  8. public ListedType ListedType { get; set; }
  9. public long Gid { get; set; }
  10. public string CardNo { get; set; }
  11. public DateTime ListedDate { get; set; }
  12. public long AccountGid { get; set; }
  13. public string AccountId { get; set; }
  14. public byte CardType { get; set; }
  15. public int DiscountNo { get; set; }
  16. public string Reason { get; set; }
  17. public byte UploadFlag { get; set; }
  18. public byte OperationType { get; set; }
  19. }
  20. }