123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- package com.ruoyi.shipping.excel;
- import java.math.BigDecimal;
- /**
- * 凯和导出对账明细
- */
- public class ExportFinancial {
- private static final long serialVersionUID = 1L;
- /**
- * 序号
- */
- private Long rankNo;
- /**
- * 提单号
- */
- private String fMblNo;
- /**
- * 始发港
- */
- private String portOfDeparture;
- /**
- * 目的港
- */
- private String destinationPort;
- /**
- * 货名
- */
- private String goodName;
- /**
- * 箱量
- */
- private Long fCnTrCount;
- /**
- * 规格
- */
- private String specification ;
- /**
- * 单价
- */
- private BigDecimal fUnitPrice;
- /**
- * 合计
- */
- private BigDecimal fAmount;
- /**
- * 起运港运输条款
- */
- private String fServiceitems;
- /**
- * 目的港运输条款
- */
- private String fServiceitemsNew;
- public String getfServiceitemsNew() {
- return fServiceitemsNew;
- }
- public void setfServiceitemsNew(String fServiceitemsNew) {
- this.fServiceitemsNew = fServiceitemsNew;
- }
- public Long getRankNo() {
- return rankNo;
- }
- public void setRankNo(Long rankNo) {
- this.rankNo = rankNo;
- }
- public String getfMblNo() {
- return fMblNo;
- }
- public void setfMblNo(String fMblNo) {
- this.fMblNo = fMblNo;
- }
- public String getPortOfDeparture() {
- return portOfDeparture;
- }
- public void setPortOfDeparture(String portOfDeparture) {
- this.portOfDeparture = portOfDeparture;
- }
- public String getDestinationPort() {
- return destinationPort;
- }
- public void setDestinationPort(String destinationPort) {
- this.destinationPort = destinationPort;
- }
- public String getGoodName() {
- return goodName;
- }
- public void setGoodName(String goodName) {
- this.goodName = goodName;
- }
- public Long getfCnTrCount() {
- return fCnTrCount;
- }
- public void setfCnTrCount(Long fCnTrCount) {
- this.fCnTrCount = fCnTrCount;
- }
- public String getSpecification() {
- return specification;
- }
- public void setSpecification(String specification) {
- this.specification = specification;
- }
- public BigDecimal getfUnitPrice() {
- return fUnitPrice;
- }
- public void setfUnitPrice(BigDecimal fUnitPrice) {
- this.fUnitPrice = fUnitPrice;
- }
- public BigDecimal getfAmount() {
- return fAmount;
- }
- public void setfAmount(BigDecimal fAmount) {
- this.fAmount = fAmount;
- }
- public String getfServiceitems() {
- return fServiceitems;
- }
- public void setfServiceitems(String fServiceitems) {
- this.fServiceitems = fServiceitems;
- }
- @Override
- public String toString() {
- return "ExportFinancial{" +
- "rankNo=" + rankNo +
- ", fMblNo='" + fMblNo + '\'' +
- ", portOfDeparture='" + portOfDeparture + '\'' +
- ", destinationPort='" + destinationPort + '\'' +
- ", goodName='" + goodName + '\'' +
- ", fCnTrCount=" + fCnTrCount +
- ", specification='" + specification + '\'' +
- ", fUnitPrice=" + fUnitPrice +
- ", fAmount=" + fAmount +
- ", fServiceitems=" + fServiceitems +
- ", fServiceitemsNew=" + fServiceitemsNew +
- '}';
- }
- }
|