裕隆城折扣合作@中興低碳 折扣報表
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

22 řádky
453B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CouponReport.Models.CouponMiddleware;
  4. public partial class MemberConsume
  5. {
  6. public int Id { get; set; }
  7. public DateTime CreateDateTimeUtc { get; set; }
  8. public DateTime ModifyDateTimeUtc { get; set; }
  9. public string? MemberId { get; set; }
  10. public string? PlateNo { get; set; }
  11. public DateTime ConsumeTime { get; set; }
  12. public string? SerialNo { get; set; }
  13. }