FeeVO.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. private BigDecimal fAmount;
  27. // 结算单位名称
  28. private String fFeesName;
  29. // 费用名称
  30. private String fProductName;
  31. // 仓储费金额
  32. private BigDecimal storageFee;
  33. // 其他金额
  34. private BigDecimal otherFee;
  35. // 总结算金额
  36. private BigDecimal fStlamount;
  37. // 应结总金额
  38. private BigDecimal nnfinished;
  39. private String reviewDate;
  40. }