|
@@ -0,0 +1,45 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+
|
|
|
+namespace MySystem.PxcModels
|
|
|
+{
|
|
|
+ public partial class TradeRecordTmp
|
|
|
+ {
|
|
|
+ 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 int MerUserId { get; set; }
|
|
|
+ public int TopUserId { get; set; }
|
|
|
+ public string Remark { get; set; }
|
|
|
+ public int BrandId { get; set; }
|
|
|
+ public ulong DirectFlag { get; set; }
|
|
|
+ public int CapFlag { get; set; }
|
|
|
+ public int QrPayFlag { get; set; }
|
|
|
+ public int BankCardType { get; set; }
|
|
|
+ public decimal TradeAmount { get; set; }
|
|
|
+ public string TradeSerialNo { get; set; }
|
|
|
+ public DateTime? ClearDate { get; set; }
|
|
|
+ public DateTime? TradeDate { get; set; }
|
|
|
+ public string SnNo { get; set; }
|
|
|
+ public int MerBuddyType { get; set; }
|
|
|
+ public int HelpMonthCount { get; set; }
|
|
|
+ public ulong MerHelpFlag { get; set; }
|
|
|
+ public string MerNo { get; set; }
|
|
|
+ public int MerchantId { get; set; }
|
|
|
+ public int UserId { get; set; }
|
|
|
+ public string RecordNo { get; set; }
|
|
|
+ public string ParentNav { get; set; }
|
|
|
+ public int PayType { get; set; }
|
|
|
+ public int VipFlag { get; set; }
|
|
|
+ public int ActStatus { get; set; }
|
|
|
+ }
|
|
|
+}
|