TkSettleBillDTO.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using dodohold.core;
  2. using System;
  3. using System.Text.Json.Serialization;
  4. using static System.Runtime.InteropServices.JavaScript.JSType;
  5. namespace molilian.core
  6. {
  7. [Table("tk_settle_bill")]
  8. public class TkSettleBillDTO
  9. {
  10. [Key]
  11. public int id { get; set; }
  12. public int accountId { get; set; } = 0;
  13. public string accountName { get; set; } = string.Empty;
  14. /// <summary>
  15. /// 淘客付款时间
  16. /// </summary>
  17. [JsonConverter(typeof(DateTimeConverterUsingDateTimeParse))]
  18. public DateTime belongTime { get; set; } = DateTime.MinValue;
  19. public int bizType { get; set; } = 0;
  20. public string bizTypeDesc { get; set; } = string.Empty;
  21. public string clearingPeriod { get; set; } = string.Empty;
  22. public decimal expectedEarnings { get; set; } = 0.0m;
  23. public int incomeType { get; set; } = 0;
  24. public string incomeTypeDesc { get; set; } = string.Empty;
  25. public decimal settleIncomeTotal { get; set; } = 0.0m;
  26. public string settleStatus { get; set; } = string.Empty;
  27. public decimal dividedIncome { get; set; } = 0.0m;
  28. public decimal platformServiceFee { get; set; } = 0.0m;
  29. [IgnoreUpdate]
  30. public DateTime create_time { get; set; } = DateTime.Now;
  31. public DateTime last_time { get; set; } = DateTime.Now;
  32. }
  33. }