|
|
@@ -12,98 +12,59 @@ public class VehicleLedgerExcel {
|
|
|
|
|
|
private Long id;
|
|
|
|
|
|
- @Excel(name = "提单号")
|
|
|
- private String mblno;
|
|
|
+ @Excel(name = "车牌号")
|
|
|
+ private String carregNo;
|
|
|
|
|
|
- @Excel(name = "装卸日期")
|
|
|
- private String mdLoadDate;
|
|
|
+ @Excel(name = "运单号")
|
|
|
+ private String orderNo;
|
|
|
|
|
|
- @Excel(name = "贸易方式")
|
|
|
- private String billType;
|
|
|
+ @Excel(name = "接单日期")
|
|
|
+ private String acceptDate;
|
|
|
|
|
|
- @Excel(name = "运输方式")
|
|
|
- private String transType;
|
|
|
+ @Excel(name = "运输性质")
|
|
|
+ private String billType;
|
|
|
|
|
|
- @Excel(name = "托运人")
|
|
|
- private String corpId;
|
|
|
+ @Excel(name = "进口提单号")
|
|
|
+ private String inMblno;
|
|
|
|
|
|
- @Excel(name = "船名")
|
|
|
- private String ysl;
|
|
|
+ @Excel(name = "提箱地点")
|
|
|
+ private String loadAddr;
|
|
|
|
|
|
- @Excel(name = "航次")
|
|
|
- private String voy;
|
|
|
+ @Excel(name = "卸货地点")
|
|
|
+ private String mdLoadAddr;
|
|
|
|
|
|
- @Excel(name = "柜量")
|
|
|
+ @Excel(name = "箱量")
|
|
|
private Long cntrQty;
|
|
|
|
|
|
- @Excel(name = "柜型")
|
|
|
+ @Excel(name = "箱形")
|
|
|
private String cntrId;
|
|
|
|
|
|
- @Excel(name = "品名")
|
|
|
- private String goodsId;
|
|
|
-
|
|
|
- @Excel(name = "重量")
|
|
|
- private BigDecimal cntrWeight;
|
|
|
-
|
|
|
- @Excel(name = "起运港")
|
|
|
- private String polId;
|
|
|
+ @Excel(name = "船名航次")
|
|
|
+ private String boxVolume;
|
|
|
|
|
|
- @Excel(name = "目的港")
|
|
|
- private String podId;
|
|
|
-
|
|
|
- @Excel(name = "提箱场站")
|
|
|
- private String loadAddr;
|
|
|
-
|
|
|
- @Excel(name = "装货地")
|
|
|
- private String mdLoadAddr;
|
|
|
-
|
|
|
- @Excel(name = "卸货地")
|
|
|
- private String unLoadAddr;
|
|
|
-
|
|
|
- @Excel(name = "车号")
|
|
|
- private String carregNo;
|
|
|
+ @Excel(name = "出口提单号")
|
|
|
+ private String outMblno;
|
|
|
|
|
|
@Excel(name = "司机")
|
|
|
private String driverName;
|
|
|
|
|
|
- @Excel(name = "运单号")
|
|
|
- private String orderNo;
|
|
|
-
|
|
|
- @Excel(name = "司机电话")
|
|
|
- private String driverTel;
|
|
|
+ @Excel(name = "费用名称")
|
|
|
+ private String fleetId;
|
|
|
|
|
|
- @Excel(name = "状态")
|
|
|
- private String orderName;
|
|
|
+ @Excel(name = "应收运费")
|
|
|
+ private BigDecimal shippingDr;
|
|
|
|
|
|
- @Excel(name = "接单日期")
|
|
|
- private String acceptDate;
|
|
|
-
|
|
|
- @Excel(name = "提箱日期")
|
|
|
- private String loadDate;
|
|
|
-
|
|
|
- @Excel(name = "还柜日期")
|
|
|
- private String unLoadDate;
|
|
|
-
|
|
|
- @Excel(name = "应收结算金额")
|
|
|
- private BigDecimal amtDr;
|
|
|
-
|
|
|
- @Excel(name = "应付结算金额")
|
|
|
- private BigDecimal amtCr;
|
|
|
+ @Excel(name = "应收其他")
|
|
|
+ private BigDecimal otherDr;
|
|
|
|
|
|
- @Excel(name = "已收结算金额")
|
|
|
- private BigDecimal stlAmtDr;
|
|
|
+ @Excel(name = "应付运费")
|
|
|
+ private BigDecimal shippingCr;
|
|
|
|
|
|
- @Excel(name = "已付结算金额")
|
|
|
- private BigDecimal stlAmtCr;
|
|
|
+ @Excel(name = "应付其他")
|
|
|
+ private BigDecimal otherCr;
|
|
|
|
|
|
- @Excel(name = "业务利润")
|
|
|
- private BigDecimal profitBill;
|
|
|
-
|
|
|
- @Excel(name = "车利润")
|
|
|
- private BigDecimal profitCar;
|
|
|
-
|
|
|
- @Excel(name = "单据类型")
|
|
|
- private String billKind;
|
|
|
+ @Excel(name = "利润")
|
|
|
+ private BigDecimal profit;
|
|
|
|
|
|
/**
|
|
|
* 检索条件:结算单位
|
|
|
@@ -135,60 +96,41 @@ public class VehicleLedgerExcel {
|
|
|
*/
|
|
|
private String invStatus;
|
|
|
|
|
|
- public String getBillKind() {
|
|
|
- return billKind;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBillKind(String billKind) {
|
|
|
- this.billKind = billKind;
|
|
|
- }
|
|
|
-
|
|
|
- public Long gettCorpId() {
|
|
|
- return tCorpId;
|
|
|
- }
|
|
|
-
|
|
|
- public void settCorpId(Long tCorpId) {
|
|
|
- this.tCorpId = tCorpId;
|
|
|
- }
|
|
|
-
|
|
|
- public List<String> getAcceptDateList() {
|
|
|
- return acceptDateList;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAcceptDateList(List<String> acceptDateList) {
|
|
|
- this.acceptDateList = acceptDateList;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 检索条件:主运单号
|
|
|
+ */
|
|
|
+ private String mBillNo;
|
|
|
|
|
|
- public List<String> getAccchkDateList() {
|
|
|
- return accchkDateList;
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
}
|
|
|
|
|
|
- public void setAccchkDateList(List<String> accchkDateList) {
|
|
|
- this.accchkDateList = accchkDateList;
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
}
|
|
|
|
|
|
- public String getMblno() {
|
|
|
- return mblno;
|
|
|
+ public String getCarregNo() {
|
|
|
+ return carregNo;
|
|
|
}
|
|
|
|
|
|
- public void setMblno(String mblno) {
|
|
|
- this.mblno = mblno;
|
|
|
+ public void setCarregNo(String carregNo) {
|
|
|
+ this.carregNo = carregNo;
|
|
|
}
|
|
|
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
+ public String getOrderNo() {
|
|
|
+ return orderNo;
|
|
|
}
|
|
|
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
+ public void setOrderNo(String orderNo) {
|
|
|
+ this.orderNo = orderNo;
|
|
|
}
|
|
|
|
|
|
- public String getMdLoadDate() {
|
|
|
- return mdLoadDate;
|
|
|
+ public String getAcceptDate() {
|
|
|
+ return acceptDate;
|
|
|
}
|
|
|
|
|
|
- public void setMdLoadDate(String mdLoadDate) {
|
|
|
- this.mdLoadDate = mdLoadDate;
|
|
|
+ public void setAcceptDate(String acceptDate) {
|
|
|
+ this.acceptDate = acceptDate;
|
|
|
}
|
|
|
|
|
|
public String getBillType() {
|
|
|
@@ -199,36 +141,28 @@ public class VehicleLedgerExcel {
|
|
|
this.billType = billType;
|
|
|
}
|
|
|
|
|
|
- public String getTransType() {
|
|
|
- return transType;
|
|
|
+ public String getInMblno() {
|
|
|
+ return inMblno;
|
|
|
}
|
|
|
|
|
|
- public void setTransType(String transType) {
|
|
|
- this.transType = transType;
|
|
|
+ public void setInMblno(String inMblno) {
|
|
|
+ this.inMblno = inMblno;
|
|
|
}
|
|
|
|
|
|
- public String getCorpId() {
|
|
|
- return corpId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCorpId(String corpId) {
|
|
|
- this.corpId = corpId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getYsl() {
|
|
|
- return ysl;
|
|
|
+ public String getLoadAddr() {
|
|
|
+ return loadAddr;
|
|
|
}
|
|
|
|
|
|
- public void setYsl(String ysl) {
|
|
|
- this.ysl = ysl;
|
|
|
+ public void setLoadAddr(String loadAddr) {
|
|
|
+ this.loadAddr = loadAddr;
|
|
|
}
|
|
|
|
|
|
- public String getVoy() {
|
|
|
- return voy;
|
|
|
+ public String getMdLoadAddr() {
|
|
|
+ return mdLoadAddr;
|
|
|
}
|
|
|
|
|
|
- public void setVoy(String voy) {
|
|
|
- this.voy = voy;
|
|
|
+ public void setMdLoadAddr(String mdLoadAddr) {
|
|
|
+ this.mdLoadAddr = mdLoadAddr;
|
|
|
}
|
|
|
|
|
|
public Long getCntrQty() {
|
|
|
@@ -247,68 +181,20 @@ public class VehicleLedgerExcel {
|
|
|
this.cntrId = cntrId;
|
|
|
}
|
|
|
|
|
|
- public String getGoodsId() {
|
|
|
- return goodsId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGoodsId(String goodsId) {
|
|
|
- this.goodsId = goodsId;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getCntrWeight() {
|
|
|
- return cntrWeight;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCntrWeight(BigDecimal cntrWeight) {
|
|
|
- this.cntrWeight = cntrWeight;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPolId() {
|
|
|
- return polId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPolId(String polId) {
|
|
|
- this.polId = polId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPodId() {
|
|
|
- return podId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPodId(String podId) {
|
|
|
- this.podId = podId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLoadAddr() {
|
|
|
- return loadAddr;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLoadAddr(String loadAddr) {
|
|
|
- this.loadAddr = loadAddr;
|
|
|
+ public String getBoxVolume() {
|
|
|
+ return boxVolume;
|
|
|
}
|
|
|
|
|
|
- public String getMdLoadAddr() {
|
|
|
- return mdLoadAddr;
|
|
|
+ public void setBoxVolume(String boxVolume) {
|
|
|
+ this.boxVolume = boxVolume;
|
|
|
}
|
|
|
|
|
|
- public void setMdLoadAddr(String mdLoadAddr) {
|
|
|
- this.mdLoadAddr = mdLoadAddr;
|
|
|
- }
|
|
|
-
|
|
|
- public String getUnLoadAddr() {
|
|
|
- return unLoadAddr;
|
|
|
+ public String getOutMblno() {
|
|
|
+ return outMblno;
|
|
|
}
|
|
|
|
|
|
- public void setUnLoadAddr(String unLoadAddr) {
|
|
|
- this.unLoadAddr = unLoadAddr;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCarregNo() {
|
|
|
- return carregNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCarregNo(String carregNo) {
|
|
|
- this.carregNo = carregNo;
|
|
|
+ public void setOutMblno(String outMblno) {
|
|
|
+ this.outMblno = outMblno;
|
|
|
}
|
|
|
|
|
|
public String getDriverName() {
|
|
|
@@ -319,100 +205,76 @@ public class VehicleLedgerExcel {
|
|
|
this.driverName = driverName;
|
|
|
}
|
|
|
|
|
|
- public String getOrderNo() {
|
|
|
- return orderNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrderNo(String orderNo) {
|
|
|
- this.orderNo = orderNo;
|
|
|
+ public String getFleetId() {
|
|
|
+ return fleetId;
|
|
|
}
|
|
|
|
|
|
- public String getDriverTel() {
|
|
|
- return driverTel;
|
|
|
+ public void setFleetId(String fleetId) {
|
|
|
+ this.fleetId = fleetId;
|
|
|
}
|
|
|
|
|
|
- public void setDriverTel(String driverTel) {
|
|
|
- this.driverTel = driverTel;
|
|
|
+ public BigDecimal getShippingDr() {
|
|
|
+ return shippingDr;
|
|
|
}
|
|
|
|
|
|
- public String getOrderName() {
|
|
|
- return orderName;
|
|
|
+ public void setShippingDr(BigDecimal shippingDr) {
|
|
|
+ this.shippingDr = shippingDr;
|
|
|
}
|
|
|
|
|
|
- public void setOrderName(String orderName) {
|
|
|
- this.orderName = orderName;
|
|
|
+ public BigDecimal getOtherDr() {
|
|
|
+ return otherDr;
|
|
|
}
|
|
|
|
|
|
- public String getAcceptDate() {
|
|
|
- return acceptDate;
|
|
|
+ public void setOtherDr(BigDecimal otherDr) {
|
|
|
+ this.otherDr = otherDr;
|
|
|
}
|
|
|
|
|
|
- public void setAcceptDate(String acceptDate) {
|
|
|
- this.acceptDate = acceptDate;
|
|
|
+ public BigDecimal getShippingCr() {
|
|
|
+ return shippingCr;
|
|
|
}
|
|
|
|
|
|
- public String getLoadDate() {
|
|
|
- return loadDate;
|
|
|
+ public void setShippingCr(BigDecimal shippingCr) {
|
|
|
+ this.shippingCr = shippingCr;
|
|
|
}
|
|
|
|
|
|
- public void setLoadDate(String loadDate) {
|
|
|
- this.loadDate = loadDate;
|
|
|
+ public BigDecimal getOtherCr() {
|
|
|
+ return otherCr;
|
|
|
}
|
|
|
|
|
|
- public String getUnLoadDate() {
|
|
|
- return unLoadDate;
|
|
|
+ public void setOtherCr(BigDecimal otherCr) {
|
|
|
+ this.otherCr = otherCr;
|
|
|
}
|
|
|
|
|
|
- public void setUnLoadDate(String unLoadDate) {
|
|
|
- this.unLoadDate = unLoadDate;
|
|
|
+ public BigDecimal getProfit() {
|
|
|
+ return profit;
|
|
|
}
|
|
|
|
|
|
- public BigDecimal getAmtDr() {
|
|
|
- return amtDr;
|
|
|
+ public void setProfit(BigDecimal profit) {
|
|
|
+ this.profit = profit;
|
|
|
}
|
|
|
|
|
|
- public void setAmtDr(BigDecimal amtDr) {
|
|
|
- this.amtDr = amtDr;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getAmtCr() {
|
|
|
- return amtCr;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAmtCr(BigDecimal amtCr) {
|
|
|
- this.amtCr = amtCr;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getStlAmtDr() {
|
|
|
- return stlAmtDr;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStlAmtDr(BigDecimal stlAmtDr) {
|
|
|
- this.stlAmtDr = stlAmtDr;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getStlAmtCr() {
|
|
|
- return stlAmtCr;
|
|
|
+ public Long gettCorpId() {
|
|
|
+ return tCorpId;
|
|
|
}
|
|
|
|
|
|
- public void setStlAmtCr(BigDecimal stlAmtCr) {
|
|
|
- this.stlAmtCr = stlAmtCr;
|
|
|
+ public void settCorpId(Long tCorpId) {
|
|
|
+ this.tCorpId = tCorpId;
|
|
|
}
|
|
|
|
|
|
- public BigDecimal getProfitBill() {
|
|
|
- return profitBill;
|
|
|
+ public List<String> getAcceptDateList() {
|
|
|
+ return acceptDateList;
|
|
|
}
|
|
|
|
|
|
- public void setProfitBill(BigDecimal profitBill) {
|
|
|
- this.profitBill = profitBill;
|
|
|
+ public void setAcceptDateList(List<String> acceptDateList) {
|
|
|
+ this.acceptDateList = acceptDateList;
|
|
|
}
|
|
|
|
|
|
- public BigDecimal getProfitCar() {
|
|
|
- return profitCar;
|
|
|
+ public List<String> getAccchkDateList() {
|
|
|
+ return accchkDateList;
|
|
|
}
|
|
|
|
|
|
- public void setProfitCar(BigDecimal profitCar) {
|
|
|
- this.profitCar = profitCar;
|
|
|
+ public void setAccchkDateList(List<String> accchkDateList) {
|
|
|
+ this.accchkDateList = accchkDateList;
|
|
|
}
|
|
|
|
|
|
public String getStlStatus() {
|
|
|
@@ -439,40 +301,36 @@ public class VehicleLedgerExcel {
|
|
|
this.invStatus = invStatus;
|
|
|
}
|
|
|
|
|
|
+ public String getmBillNo() {
|
|
|
+ return mBillNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setmBillNo(String mBillNo) {
|
|
|
+ this.mBillNo = mBillNo;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "VehicleLedgerExcel{" +
|
|
|
"id=" + id +
|
|
|
- ", mblno='" + mblno + '\'' +
|
|
|
- ", mdLoadDate='" + mdLoadDate + '\'' +
|
|
|
+ ", carregNo='" + carregNo + '\'' +
|
|
|
+ ", orderNo='" + orderNo + '\'' +
|
|
|
+ ", acceptDate='" + acceptDate + '\'' +
|
|
|
", billType='" + billType + '\'' +
|
|
|
- ", transType='" + transType + '\'' +
|
|
|
- ", corpId='" + corpId + '\'' +
|
|
|
- ", ysl='" + ysl + '\'' +
|
|
|
- ", voy='" + voy + '\'' +
|
|
|
- ", cntrQty=" + cntrQty +
|
|
|
- ", cntrId='" + cntrId + '\'' +
|
|
|
- ", goodsId='" + goodsId + '\'' +
|
|
|
- ", cntrWeight=" + cntrWeight +
|
|
|
- ", polId='" + polId + '\'' +
|
|
|
- ", podId='" + podId + '\'' +
|
|
|
+ ", inMblno='" + inMblno + '\'' +
|
|
|
", loadAddr='" + loadAddr + '\'' +
|
|
|
", mdLoadAddr='" + mdLoadAddr + '\'' +
|
|
|
- ", unLoadAddr='" + unLoadAddr + '\'' +
|
|
|
- ", carregNo='" + carregNo + '\'' +
|
|
|
+ ", cntrQty=" + cntrQty +
|
|
|
+ ", cntrId='" + cntrId + '\'' +
|
|
|
+ ", boxVolume='" + boxVolume + '\'' +
|
|
|
+ ", outMblno='" + outMblno + '\'' +
|
|
|
", driverName='" + driverName + '\'' +
|
|
|
- ", orderNo='" + orderNo + '\'' +
|
|
|
- ", driverTel='" + driverTel + '\'' +
|
|
|
- ", orderName='" + orderName + '\'' +
|
|
|
- ", acceptDate='" + acceptDate + '\'' +
|
|
|
- ", loadDate='" + loadDate + '\'' +
|
|
|
- ", unLoadDate='" + unLoadDate + '\'' +
|
|
|
- ", amtDr=" + amtDr +
|
|
|
- ", amtCr=" + amtCr +
|
|
|
- ", stlAmtDr=" + stlAmtDr +
|
|
|
- ", stlAmtCr=" + stlAmtCr +
|
|
|
- ", profitBill=" + profitBill +
|
|
|
- ", profitCar=" + profitCar +
|
|
|
+ ", fleetId='" + fleetId + '\'' +
|
|
|
+ ", shippingDr=" + shippingDr +
|
|
|
+ ", otherDr=" + otherDr +
|
|
|
+ ", shippingCr=" + shippingCr +
|
|
|
+ ", otherCr=" + otherCr +
|
|
|
+ ", profit=" + profit +
|
|
|
", tCorpId=" + tCorpId +
|
|
|
", acceptDateList=" + acceptDateList +
|
|
|
", accchkDateList=" + accchkDateList +
|