using Mapster; namespace Model { /// /// 流量卡分佣交易 TradeFluxRecord /// [SugarTable("TradeFluxRecord", "流量卡分佣交易")] [Tenant("0")] public class TradeFluxRecord { /// /// 交易单号 /// [SugarColumn(ColumnDescription = "交易单号", Length = 32, IsPrimaryKey = true, ColumnName = "TradeSerialNo")] public string? tradeSerialNo { get; set; } /// /// 商户编号 /// [SugarColumn(ColumnDescription = "商户编号", Length = 32, IsPrimaryKey = true, ColumnName = "MerNo")] public string? merNo { get; set; } /// /// 商户名称 /// [SugarColumn(ColumnDescription = "商户名称", Length = 32, ColumnName = "MerName")] public string? merName { get; set; } /// /// 交易金额 /// [SugarColumn(ColumnDescription = "交易金额", ColumnName = "TradeAmount")] public decimal tradeAmount { get; set; } /// /// 交易状态 /// [SugarColumn(ColumnDescription = "交易状态", Length = 16, ColumnName = "TradeStatus")] public string? tradeStatus { get; set; } /// /// 交易日期 /// [SugarColumn(ColumnDescription = "交易日期", Length = 8, ColumnName = "TradeDate")] public string? tradeDate { get; set; } /// /// 交易时间 /// [SugarColumn(ColumnDescription = "交易时间", Length = 8, ColumnName = "TradeTime")] public string? tradeTime { get; set; } /// /// 银行卡类型 /// [SugarColumn(ColumnDescription = "银行卡类型", Length = 16, ColumnName = "BankCardType")] public string? bankCardType { get; set; } /// /// 交易SN号 /// [SugarColumn(ColumnDescription = "交易SN号", Length = 32, ColumnName = "TradeSnNo")] public string? tradeSnNo { get; set; } /// /// 挖款标识 /// [SugarColumn(ColumnDescription = "挖款标识", Length = 4, ColumnName = "DigAmtFlag")] public string? digAmtFlag { get; set; } /// /// 挖款金额 /// [SugarColumn(ColumnDescription = "挖款金额", ColumnName = "DigAmt")] public decimal digAmt { get; set; } /// /// 交易卡号 /// [SugarColumn(ColumnDescription = "交易卡号", Length = 32, ColumnName = "BankCardNo")] public string? bankCardNo { get; set; } /// /// 手续费 /// [SugarColumn(ColumnDescription = "手续费", ColumnName = "FeeAmount")] public decimal feeAmount { get; set; } /// /// 出款方式 /// [SugarColumn(ColumnDescription = "出款方式", Length = 16, ColumnName = "SettleMethod")] public string? settleMethod { get; set; } /// /// 出款手续费 /// [SugarColumn(ColumnDescription = "出款手续费", ColumnName = "SettleFee")] public decimal settleFee { get; set; } /// /// 小额双免 /// [SugarColumn(ColumnDescription = "小额双免", Length = 4, ColumnName = "SmallDouble")] public string? smallDouble { get; set; } /// /// 业务员编号 /// [SugarColumn(ColumnDescription = "业务员编号", Length = 32, ColumnName = "BizEnterNo")] public string? bizEnterNo { get; set; } /// /// 业务员名称 /// [SugarColumn(ColumnDescription = "业务员名称", Length = 64, ColumnName = "BizEnterName")] public string? bizEnterName { get; set; } /// /// 来源类型 /// [SugarColumn(ColumnDescription = "来源类型", Length = 16, ColumnName = "SourceType")] public string? sourceType { get; set; } /// /// 计费类型 /// [SugarColumn(ColumnDescription = "计费类型", Length = 32, ColumnName = "BillType")] public string? billType { get; set; } /// /// 快钱交易流水号 /// [SugarColumn(ColumnDescription = "快钱交易流水号", Length = 32, ColumnName = "KqTradeSeq")] public string? kqTradeSeq { get; set; } /// /// 输入模式 /// [SugarColumn(ColumnDescription = "输入模式", Length = 32, ColumnName = "InputModel")] public string? inputModel { get; set; } /// /// 终端号 /// [SugarColumn(ColumnDescription = "终端号", Length = 32, ColumnName = "TerminalNo")] public string? terminalNo { get; set; } /// /// 设备网络 /// [SugarColumn(ColumnDescription = "设备网络", Length = 32, ColumnName = "DeviceNetwork")] public string? deviceNetwork { get; set; } /// /// 产品类型 /// [SugarColumn(ColumnDescription = "产品类型", Length = 32, ColumnName = "ProductType")] public string? productType { get; set; } /// /// 代理商编号 /// [SugarColumn(ColumnDescription = "代理商编号", Length = 32, ColumnName = "AgentNo")] public string? agentNo { get; set; } /// /// 备用字段1 /// [SugarColumn(ColumnDescription = "备用字段1", Length = 50, ColumnName = "Field1")] public string? field1 { get; set; } /// /// 备用字段2 /// [SugarColumn(ColumnDescription = "备用字段2", Length = 50, ColumnName = "Field2")] public string? field2 { get; set; } /// /// 备用字段3 /// [SugarColumn(ColumnDescription = "备用字段3", Length = 50, ColumnName = "Field3")] public string? field3 { get; set; } } }