KxsGdBill.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaStatModels
  4. {
  5. public partial class KxsGdBill
  6. {
  7. public int Id { get; set; }
  8. public string Remark { get; set; }
  9. public string RequestId { get; set; }
  10. public int Status { get; set; }
  11. public decimal OrganRatio { get; set; }
  12. public decimal DivideRatio { get; set; }
  13. public string ActivityName { get; set; }
  14. public string GoodsTypeName { get; set; }
  15. public string OldOrderName { get; set; }
  16. public DateTime? ActTime { get; set; }
  17. public DateTime? OrderTime { get; set; }
  18. public string ChannelNumber { get; set; }
  19. public string ChannelName { get; set; }
  20. public int UserStatus { get; set; }
  21. public decimal OuterAmount { get; set; }
  22. public decimal InnerAmount { get; set; }
  23. public decimal BillAmount { get; set; }
  24. public string GoodsName { get; set; }
  25. public string MarketNumber { get; set; }
  26. public string MarketName { get; set; }
  27. public string TeamName { get; set; }
  28. public string City { get; set; }
  29. public string Province { get; set; }
  30. public string BusinessType { get; set; }
  31. public string SettleScene { get; set; }
  32. public int SettlePeriod { get; set; }
  33. public int SettleMonth { get; set; }
  34. public int EnterMonth { get; set; }
  35. public string SimNo { get; set; }
  36. public string Phone { get; set; }
  37. public string UpdateBy { get; set; }
  38. public string CreateBy { get; set; }
  39. public DateTime? UpdateTime { get; set; }
  40. public DateTime? CreateTime { get; set; }
  41. public int DelFlag { get; set; }
  42. public int Version { get; set; }
  43. }
  44. }