12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package com.ruoyi.finance.domain.vo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.finance.domain.TFee;
- import lombok.Data;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * @author caifc
- * @date 2021-11-23 13:48
- */
- @Data
- public class FeeVO extends TFee {
- private static final long serialVersionUID = 1L;
- // 唛头
- private String fMarks;
- // 提单号
- private String fMblno;
- // 来源id
- private Long fSrcpid;
- // 审核时间
- @JsonFormat(pattern = "yyyy-MM-dd")
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- private Date fReviewDate;
- // 业务时间
- @JsonFormat(pattern = "yyyy-MM-dd")
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- private Date fBstime;
- // 总金额
- private BigDecimal fAmount;
- // 结算单位名称
- private String fFeesName;
- // 费用名称
- private String fProductName;
- // 仓储费金额
- private BigDecimal storageFee;
- // 其他金额
- private BigDecimal otherFee;
- // 总结算金额
- private BigDecimal fStlamount;
- // 应结总金额(利润)
- private BigDecimal nnfinished;
- private String reviewDate;
- // 对账金额
- private BigDecimal fAccamount;
- // 开票金额
- private BigDecimal fInvamount;
- //应收金额
- private BigDecimal receivableAmount;
- //应付金额
- private BigDecimal copeWithAmount;
- //天数
- private int fBillingDays;
- //单价
- private BigDecimal price;
- private BigDecimal receivablePrice;
- private BigDecimal copeWithPrice;
- //数量
- private BigDecimal fQty;
- private BigDecimal receivableFQty;
- private BigDecimal copeWithFQty;
- private String fBilltypeC;
- }
|