JdEstimateCommDTO.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using dodohold.core;
  2. using System.Text.Json.Serialization;
  3. namespace molilian.core
  4. {
  5. [Table("jd_estimate_comm")]
  6. public class JdEstimateCommDTO
  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 decimal cosFee { get; set; } = 0.0m;
  18. public int feeType { get; set; } = 0;
  19. public string feeTypeStr { get; set; } = string.Empty;
  20. public int platform { get; set; } = 0;
  21. public string platformStr { get; set; } = string.Empty;
  22. public int unionType { get; set; } = 0;
  23. public string unionTypeStr { get; set; } = string.Empty;
  24. /// <summary>
  25. /// 0未结算 2已结算
  26. /// </summary>
  27. public int status { get; set; } = 0;
  28. public DateTime create_time { get; set; } = DateTime.Now;
  29. public DateTime last_time { get; set; } = DateTime.Now;
  30. public int downloadDetail { get; set; }
  31. public int showDetail { get; set; }
  32. public string payMonth { get; set; } = string.Empty;
  33. }
  34. }