UnionCouponDTO.cs 1.2 KB

1234567891011121314151617181920212223242526272829
  1. 
  2. using dodohold.core;
  3. namespace molilian.core
  4. {
  5. [Table("tk_coupon_logs")]
  6. public class UnionCouponDTO
  7. {
  8. [Key]
  9. public int id { get; set; }
  10. public TkChannelEnum channel { get; set; }
  11. public int accountId { get; set; } = 0;
  12. public string accountName { get; set; } = string.Empty;
  13. public string rawContent { get; set; } = string.Empty;
  14. public bool success { get; set; } = false;
  15. public string reason { get; set; } = string.Empty;
  16. public string message { get; set; } = string.Empty;
  17. public string deeplink_url { get; set; } = string.Empty;
  18. public int elapsedTime { get; set; } = 0;
  19. public string ip { get; set; } = string.Empty;
  20. public string oaid { get; set; } = string.Empty;
  21. public decimal couponAmount { get; set; } = 0.00M;
  22. public string itemId { get; set; } = string.Empty;
  23. public string pic { get; set; } = string.Empty;
  24. public DateTime create_time { get; set; } = DateTime.Now;
  25. public string couponEffectiveStartTime { get; set; } = string.Empty;
  26. public string couponEffectiveEndTime { get; set; } = string.Empty;
  27. }
  28. }