CustomerFeeSetCompareDetailDto.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.sr.smp.contract.dto.customer;
  2. import lombok.Data;
  3. import java.math.BigDecimal;
  4. /*******************************************************
  5. * 客户费用比对详细结果 *
  6. * @author: 哥只是个传说
  7. * @time: 2023-11-18 11:10:59
  8. * *****************************************************/
  9. @Data
  10. public class CustomerFeeSetCompareDetailDto {
  11. /**
  12. * 费用(科目)编号
  13. */
  14. private Integer feeItemId;
  15. /**
  16. * 费用名称
  17. */
  18. private String feeItemName;
  19. /**
  20. * 包装类型 PackageType
  21. */
  22. private Integer packageType;
  23. /**
  24. * 包装类型 PackageType
  25. */
  26. private String packageTypeName;
  27. /**
  28. * 原起始重量
  29. */
  30. private BigDecimal originalBeginWeight;
  31. /**
  32. * 原始结束重量
  33. */
  34. private BigDecimal originalEndWeight;
  35. /**
  36. * 分区编号
  37. */
  38. private String partitionId;
  39. /**
  40. * 分区名称
  41. */
  42. private String partitionName;
  43. /**
  44. * 提供单价(客户价)
  45. */
  46. private BigDecimal offerPrice;
  47. /**
  48. * 结算价
  49. */
  50. private BigDecimal organizationOfferPrice;
  51. /**
  52. * 折扣标准(结算价对客户)
  53. */
  54. private BigDecimal discount;
  55. /**
  56. * 价格差异
  57. */
  58. private BigDecimal priceVariance;
  59. /**
  60. * 提示信息
  61. */
  62. private String message;
  63. }