12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.MainModels2
- {
- public partial class MerchantChangeSettlementCardRecord
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string HoldAgentProtocol { get; set; }
- public string AgentIdCardBack { get; set; }
- public string AgentIdCardFront { get; set; }
- public string AgentProtocol { get; set; }
- public string PriLicAgreement { get; set; }
- public string OpenAccountLicenses { get; set; }
- public string BankCard { get; set; }
- public int TaskId { get; set; }
- public DateTime? AgentCardEndDate { get; set; }
- public DateTime? AgentCardStartDate { get; set; }
- public string IdCard { get; set; }
- public string AcctZbankCode { get; set; }
- public int AlterType { get; set; }
- public string ZbankNo { get; set; }
- public string AccountNo { get; set; }
- public string AccountName { get; set; }
- public string MchtNo { get; set; }
- public string Operator { get; set; }
- public int AccountType { get; set; }
- public string Remark { get; set; }
- public string MerchantName { get; set; }
- public int MerchantId { get; set; }
- }
- }
|