ConsumerOfMerchant.cs 454 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class ConsumerOfMerchant
  6. {
  7. public int Id { get; set; }
  8. public DateTime? CreateDate { get; set; }
  9. public string NickName { get; set; }
  10. public int TotalConsumCount { get; set; }
  11. public int TotalAmount { get; set; }
  12. public DateTime? LastConsumDate { get; set; }
  13. public ulong CardFlag { get; set; }
  14. }
  15. }