123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- 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;
- // 总金额
- private BigDecimal fAmount;
- // 结算单位名称
- private String fFeesName;
- // 费用名称
- private String fProductName;
- // 仓储费金额
- private BigDecimal storageFee;
- // 其他金额
- private BigDecimal otherFee;
- // 总结算金额
- private BigDecimal fStlamount;
- // 应结总金额
- private BigDecimal nnfinished;
- private String reviewDate;
- }
|