MerchantChangeSettlementCardRecord.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Main2
  4. {
  5. public partial class MerchantChangeSettlementCardRecord
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int Status { get; set; }
  10. public int Version { get; set; }
  11. public DateTime? CreateDate { get; set; }
  12. public DateTime? UpdateDate { get; set; }
  13. public string HoldAgentProtocol { get; set; }
  14. public string AgentIdCardBack { get; set; }
  15. public string AgentIdCardFront { get; set; }
  16. public string AgentProtocol { get; set; }
  17. public string PriLicAgreement { get; set; }
  18. public string OpenAccountLicenses { get; set; }
  19. public string BankCard { get; set; }
  20. public int TaskId { get; set; }
  21. public DateTime? AgentCardEndDate { get; set; }
  22. public DateTime? AgentCardStartDate { get; set; }
  23. public string IdCard { get; set; }
  24. public string AcctZbankCode { get; set; }
  25. public int AlterType { get; set; }
  26. public string ZbankNo { get; set; }
  27. public string AccountNo { get; set; }
  28. public string AccountName { get; set; }
  29. public string MchtNo { get; set; }
  30. public string Operator { get; set; }
  31. }
  32. }