using System; using System.Collections.Generic; namespace MySystem { public class ConsumerOfMerchant { public int Id { get; set; } public DateTime? CreateDate { get; set; } public string NickName { get; set; } public int TotalConsumCount { get; set; } public int TotalAmount { get; set; } public DateTime? LastConsumDate { get; set; } public ulong CardFlag { get; set; } } }