FeeVO.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package com.ruoyi.finance.domain.vo;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.finance.domain.TFee;
  4. import lombok.Data;
  5. import org.springframework.format.annotation.DateTimeFormat;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. /**
  9. * @author caifc
  10. * @date 2021-11-23 13:48
  11. */
  12. @Data
  13. public class FeeVO extends TFee {
  14. private static final long serialVersionUID = 1L;
  15. // 唛头
  16. private String fMarks;
  17. // 提单号
  18. private String fMblno;
  19. // 来源id
  20. private Long fSrcpid;
  21. // 审核时间
  22. @JsonFormat(pattern = "yyyy-MM-dd")
  23. @DateTimeFormat(pattern = "yyyy-MM-dd")
  24. private Date fReviewDate;
  25. // 业务时间
  26. @JsonFormat(pattern = "yyyy-MM-dd")
  27. @DateTimeFormat(pattern = "yyyy-MM-dd")
  28. private Date fBstime;
  29. // 总金额
  30. private BigDecimal fAmount;
  31. // 结算单位名称
  32. private String fFeesName;
  33. // 费用名称
  34. private String fProductName;
  35. // 仓储费金额
  36. private BigDecimal storageFee;
  37. // 其他金额
  38. private BigDecimal otherFee;
  39. // 总结算金额
  40. private BigDecimal fStlamount;
  41. // 应结总金额(利润)
  42. private BigDecimal nnfinished;
  43. private String reviewDate;
  44. // 对账金额
  45. private BigDecimal fAccamount;
  46. // 开票金额
  47. private BigDecimal fInvamount;
  48. //应收金额
  49. private BigDecimal receivableAmount;
  50. //应付金额
  51. private BigDecimal copeWithAmount;
  52. //天数
  53. private int fBillingDays;
  54. //单价
  55. private BigDecimal price;
  56. private BigDecimal receivablePrice;
  57. private BigDecimal copeWithPrice;
  58. //数量
  59. private BigDecimal fQty;
  60. private BigDecimal receivableFQty;
  61. private BigDecimal copeWithFQty;
  62. private String fBilltypeC;
  63. }