123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Main
- {
- public partial class MerchantInfo
- {
- 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 ParentUserNav { get; set; }
- public int UserId { get; set; }
- public DateTime? LastConsumeDate { get; set; }
- public int TotalConsumeCount { get; set; }
- public DateTime? LastAddConsumerDate { get; set; }
- public decimal TotalActual { get; set; }
- public string Logo { get; set; }
- public string LoginPwd { get; set; }
- public int TotalUser { get; set; }
- public int TotalCustomer { get; set; }
- public int TotalOrder { get; set; }
- public decimal TotalAmount { get; set; }
- public ulong IsAuth { get; set; }
- public string Address { get; set; }
- public string Areas { get; set; }
- public string Mobile { get; set; }
- public string Name { get; set; }
- public DateTime? BindDate { get; set; }
- public int BindStatus { get; set; }
- public DateTime? ActivationDate { get; set; }
- public int ActivationStatus { get; set; }
- public decimal TotalActActual { get; set; }
- public decimal TotalActAmount { get; set; }
- public int ActStat { get; set; }
- public DateTime? SignDate { get; set; }
- public decimal AllocationAmount { get; set; }
- public decimal ActMaxAmount { get; set; }
- public decimal ActCurrentAmount { get; set; }
- public int ExamineStatus { get; set; }
- public int Months { get; set; }
- public int IsAct { get; set; }
- public DateTime? EndTime { get; set; }
- public DateTime? StartTime { get; set; }
- public string BusinessHours { get; set; }
- public string BriefIntroduction { get; set; }
- public int Popularity { get; set; }
- public decimal Latitude { get; set; }
- public decimal Longitude { get; set; }
- public int BrandId { get; set; }
- }
- }
|