using System; using System.Collections.Generic; namespace MySystem.Models { public partial class Consumers { 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 WechatOpenId { get; set; } public ulong CardFlag { get; set; } public ulong AlipayFlag { get; set; } public ulong WeChatPayFlag { get; set; } public DateTime? LastConsumDate { get; set; } public int TotalConsumCount { get; set; } public decimal TotalAmount { get; set; } public string AlipayUserId { get; set; } public string WechatUnionid { get; set; } public int CurIntgegral { get; set; } public int TotalIntegral { get; set; } public decimal TotalDividend { get; set; } public string Mobile { get; set; } public string HeadPhoto { get; set; } public string NickName { get; set; } } }