PddEstimateRevenueDTO.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using dodohold.core;
  2. using System.Text.Json.Serialization;
  3. namespace molilian.core
  4. {
  5. [Table("pdd_estimate_revenue")]
  6. public class PddEstimateRevenueDTO
  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 DateTime calcDate { get; set; } = DateTime.MinValue;
  18. public string pid { get; set; } = string.Empty;
  19. public string pidName { get; set; } = string.Empty;
  20. //支付笔数
  21. public int orderNum { get; set; } = 0;
  22. /// <summary>
  23. /// 支付金额(分)
  24. /// </summary>
  25. public int orderAmount { get; set; } = 0;
  26. /// <summary>
  27. /// 支付订单的预估佣金收入(分)
  28. /// </summary>
  29. public int feeAmount { get; set; } = 0;
  30. /// <summary>
  31. /// 笔单价(分)
  32. /// </summary>
  33. public decimal avgPrice { get; set; } = 0;
  34. /// <summary>
  35. /// 跨店佣金收入(分)
  36. /// </summary>
  37. public int mallRelFeeAmount { get; set; } = 0;
  38. /// <summary>
  39. /// 应该是锁定金额?
  40. /// </summary>
  41. public int lockFeeAmount { get; set; } = 0;
  42. public DateTime create_time { get; set; } = DateTime.MinValue;
  43. public DateTime last_time { get; set; } = DateTime.MinValue;
  44. }
  45. }