|
|
@@ -0,0 +1,51 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+
|
|
|
+namespace MySystem.Models
|
|
|
+{
|
|
|
+ public partial class SimposMerchantInfo
|
|
|
+ {
|
|
|
+ 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 EmployeeName { get; set; }
|
|
|
+ public string EmployeeNo { get; set; }
|
|
|
+ public decimal ActAmount { get; set; }
|
|
|
+ public string ActStatusName { get; set; }
|
|
|
+ public string ProductTypeName { get; set; }
|
|
|
+ public string ActivityName { get; set; }
|
|
|
+ public string ProductName { get; set; }
|
|
|
+ public int Type { get; set; }
|
|
|
+ public int StandardMonths { get; set; }
|
|
|
+ public int StandardStatus { get; set; }
|
|
|
+ public int TopUserId { get; set; }
|
|
|
+ public int MerUserType { get; set; }
|
|
|
+ public string Remark { get; set; }
|
|
|
+ public int BrandId { get; set; }
|
|
|
+ public int SnStoreId { get; set; }
|
|
|
+ public DateTime? MerStandardDate { get; set; }
|
|
|
+ public int SnType { get; set; }
|
|
|
+ public int MerUserId { get; set; }
|
|
|
+ public int UserId { get; set; }
|
|
|
+ public string MgrName { get; set; }
|
|
|
+ public int DirectUserId { get; set; }
|
|
|
+ public int ActiveStatus { get; set; }
|
|
|
+ public int MerStatus { get; set; }
|
|
|
+ public string KqSnNo { get; set; }
|
|
|
+ public string KqMerNo { get; set; }
|
|
|
+ public string MerIdcardNo { get; set; }
|
|
|
+ public string MerRealName { get; set; }
|
|
|
+ public string MerchantMobile { get; set; }
|
|
|
+ public string MerchantName { get; set; }
|
|
|
+ public string MerchantNo { get; set; }
|
|
|
+ }
|
|
|
+}
|