1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Main1
- {
- 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 IsAct { get; set; }
- public int ExamineStatus { get; set; }
- public int Months { 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; }
- }
- }
|