JdSpreadReportDTO.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using dodohold.core;
  2. using System.Text.Json.Serialization;
  3. namespace molilian.core
  4. {
  5. [Table("jd_spread_report")]
  6. public class JdSpreadReportDTO
  7. {
  8. [Key]
  9. public int id { get; set; }
  10. public int accountId { get; set; } = 0;
  11. public string accountName { get; set; } = string.Empty;
  12. /// <summary>
  13. /// 淘客付款时间
  14. /// </summary>
  15. [JsonConverter(typeof(DateTimeConverterUsingDateTimeParse))]
  16. public DateTime report_date { get; set; } = DateTime.MinValue;
  17. public int clickNum { get; set; } = 0;
  18. public decimal cosFee { get; set; } = 0.0m;
  19. public decimal cosPrice { get; set; } = 0.0m;
  20. public decimal finishCosFee { get; set; } = 0.0m;
  21. public decimal finishCosPrice { get; set; } = 0.0m;
  22. public int finishOrderNum { get; set; } = 0;
  23. public int orderNum { get; set; } = 0;
  24. [IgnoreUpdate]
  25. public DateTime create_time { get; set; } = DateTime.Now;
  26. public DateTime last_time { get; set; } = DateTime.Now;
  27. }
  28. }