12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.CashModels
- {
- public partial class ChannelSet
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string CreateMan { get; set; }
- public string UpdateMan { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public string Remark { get; set; }
- public int PaymentFlowType { get; set; }
- public int SettleType { get; set; }
- public string TradeEndTime { get; set; }
- public string TradeStartTime { get; set; }
- public decimal MerchantCapFee { get; set; }
- public decimal MerchantCapMoney { get; set; }
- public decimal MerchantFee { get; set; }
- public decimal MerchantRate { get; set; }
- public decimal ChannelCapFee { get; set; }
- public decimal ChannelCapMoney { get; set; }
- public decimal ChannelFee { get; set; }
- public decimal ChannelRate { get; set; }
- public decimal DayLimitMoney { get; set; }
- public decimal SingleCardDayLimit { get; set; }
- public decimal MaxTradeMoney { get; set; }
- public decimal MinTradeMoney { get; set; }
- public int ChannelType { get; set; }
- public int ChannelStatus { get; set; }
- public string MerchantIp { get; set; }
- public string PrivateKey { get; set; }
- public string PublicKey { get; set; }
- public string PrivatePemKey { get; set; }
- public string PublicPemKey { get; set; }
- public string ReturnUrl { get; set; }
- public string NotifyUrl { get; set; }
- public string QueryUrl { get; set; }
- public string PayUrl { get; set; }
- public string ChannelMerchantNo { get; set; }
- public string ChannelName { get; set; }
- public string ChannelCode { get; set; }
- }
- }
|