裕隆城折扣合作@中興低碳 折扣報表
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

42 satır
882B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CouponReport.Models.CouponMiddleware;
  4. public partial class Log
  5. {
  6. public int Id { get; set; }
  7. public DateTime CreateDateTimeUtc { get; set; }
  8. public DateTime ModifyDateTimeUtc { get; set; }
  9. public string? SiteId { get; set; }
  10. public DateTime LogTime { get; set; }
  11. public string? LogInfo { get; set; }
  12. public string? LogType { get; set; }
  13. public string? Type { get; set; }
  14. public string? Status { get; set; }
  15. public string? DeviceId { get; set; }
  16. public decimal? TotalAmount { get; set; }
  17. public decimal? DiscountAmount { get; set; }
  18. public string? ExternalSystemKey { get; set; }
  19. public string? SerialNo { get; set; }
  20. public DateTime? EnterTime { get; set; }
  21. public string? PlateNo { get; set; }
  22. public string? RateCode { get; set; }
  23. }