package com.ruoyi.orderPlan.domain; import com.ruoyi.common.annotation.Excel; import java.math.BigDecimal; /** * 车辆台账Excel */ public class VehicleLedgerExcel { private Long id; @Excel(name = "提单号") private String mblno; @Excel(name = "装卸日期") private String mdLoadDate; @Excel(name = "贸易方式") private String billType; @Excel(name = "运输方式") private String transType; @Excel(name = "托运人") private String corpId; @Excel(name = "船名") private String ysl; @Excel(name = "航次") private String voy; @Excel(name = "柜量") private Long cntrQty; @Excel(name = "柜型") private String cntrId; @Excel(name = "品名") private String goodsId; @Excel(name = "重量") private BigDecimal cntrWeight; @Excel(name = "起运港") private String polId; @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 driverName; @Excel(name = "运单号") private String orderNo; @Excel(name = "司机电话") private String driverTel; @Excel(name = "状态") private String orderName; @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 stlAmtDr; @Excel(name = "已付结算金额") private BigDecimal stlAmtCr; @Excel(name = "业务利润") private BigDecimal profitBill; @Excel(name = "车利润") private BigDecimal profitCar; /** * 检索条件:结算状态 */ private String stlStatus; /** * 检索条件:对账状态 */ private String accchkStatus; /** * 检索条件:开票状态 */ private String invStatus; public String getMblno() { return mblno; } public void setMblno(String mblno) { this.mblno = mblno; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getMdLoadDate() { return mdLoadDate; } public void setMdLoadDate(String mdLoadDate) { this.mdLoadDate = mdLoadDate; } public String getBillType() { return billType; } public void setBillType(String billType) { this.billType = billType; } public String getTransType() { return transType; } public void setTransType(String transType) { this.transType = transType; } public String getCorpId() { return corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getYsl() { return ysl; } public void setYsl(String ysl) { this.ysl = ysl; } public String getVoy() { return voy; } public void setVoy(String voy) { this.voy = voy; } public Long getCntrQty() { return cntrQty; } public void setCntrQty(Long cntrQty) { this.cntrQty = cntrQty; } public String getCntrId() { return cntrId; } public void setCntrId(String cntrId) { 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 getMdLoadAddr() { return mdLoadAddr; } public void setMdLoadAddr(String mdLoadAddr) { this.mdLoadAddr = mdLoadAddr; } public String getUnLoadAddr() { return unLoadAddr; } public void setUnLoadAddr(String unLoadAddr) { this.unLoadAddr = unLoadAddr; } public String getCarregNo() { return carregNo; } public void setCarregNo(String carregNo) { this.carregNo = carregNo; } public String getDriverName() { return driverName; } public void setDriverName(String driverName) { this.driverName = driverName; } public String getOrderNo() { return orderNo; } public void setOrderNo(String orderNo) { this.orderNo = orderNo; } public String getDriverTel() { return driverTel; } public void setDriverTel(String driverTel) { this.driverTel = driverTel; } public String getOrderName() { return orderName; } public void setOrderName(String orderName) { this.orderName = orderName; } public String getAcceptDate() { return acceptDate; } public void setAcceptDate(String acceptDate) { this.acceptDate = acceptDate; } public String getLoadDate() { return loadDate; } public void setLoadDate(String loadDate) { this.loadDate = loadDate; } public String getUnLoadDate() { return unLoadDate; } public void setUnLoadDate(String unLoadDate) { this.unLoadDate = unLoadDate; } public BigDecimal getAmtDr() { return amtDr; } 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 void setStlAmtCr(BigDecimal stlAmtCr) { this.stlAmtCr = stlAmtCr; } public BigDecimal getProfitBill() { return profitBill; } public void setProfitBill(BigDecimal profitBill) { this.profitBill = profitBill; } public BigDecimal getProfitCar() { return profitCar; } public void setProfitCar(BigDecimal profitCar) { this.profitCar = profitCar; } public String getStlStatus() { return stlStatus; } public void setStlStatus(String stlStatus) { this.stlStatus = stlStatus; } public String getAccchkStatus() { return accchkStatus; } public void setAccchkStatus(String accchkStatus) { this.accchkStatus = accchkStatus; } public String getInvStatus() { return invStatus; } public void setInvStatus(String invStatus) { this.invStatus = invStatus; } @Override public String toString() { return "VehicleLedgerExcel{" + "mdLoadDate='" + mdLoadDate + '\'' + ", billType='" + billType + '\'' + ", transType='" + transType + '\'' + ", corpId='" + corpId + '\'' + ", ysl='" + ysl + '\'' + ", voy='" + voy + '\'' + ", cntrQty=" + cntrQty + ", cntrId='" + cntrId + '\'' + ", goodsId='" + goodsId + '\'' + ", cntrWeight=" + cntrWeight + ", polId='" + polId + '\'' + ", podId='" + podId + '\'' + ", loadAddr='" + loadAddr + '\'' + ", mdLoadAddr='" + mdLoadAddr + '\'' + ", unLoadAddr='" + unLoadAddr + '\'' + ", carregNo='" + carregNo + '\'' + ", 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 + ", stlStatus='" + stlStatus + '\'' + ", accchkStatus='" + accchkStatus + '\'' + ", invStatus='" + invStatus + '\'' + '}'; } }