|
@@ -12,6 +12,7 @@ import com.ruoyi.shipping.domain.TWarehousebillsCntritems;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.util.Arrays;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -581,6 +582,12 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
@Excel(name = "订单修改提交审批状态")
|
|
|
private Long fSubmitUpdate;
|
|
|
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String remark;
|
|
|
+
|
|
|
/** 订单删除审批状态 */
|
|
|
@Excel(name = "订单删除审批状态")
|
|
|
private Long fDeleteStatus;
|
|
@@ -636,6 +643,28 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
*/
|
|
|
private String fServiceitemsNew;
|
|
|
|
|
|
+ /**
|
|
|
+ * 摘要
|
|
|
+ */
|
|
|
+ @Excel
|
|
|
+ private String documentSummary;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 票据类型
|
|
|
+ */
|
|
|
+ @Excel
|
|
|
+ private String financialBillType;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
public String getfServiceitemsNew() {
|
|
|
return fServiceitemsNew;
|
|
|
}
|
|
@@ -705,6 +734,22 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
*/
|
|
|
private String isPledge;
|
|
|
|
|
|
+ public String getFinancialBillType() {
|
|
|
+ return financialBillType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFinancialBillType(String financialBillType) {
|
|
|
+ this.financialBillType = financialBillType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDocumentSummary(){
|
|
|
+ return documentSummary;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDocumentSummary(String documentSummary){
|
|
|
+ this.documentSummary = documentSummary;
|
|
|
+ }
|
|
|
+
|
|
|
public String getIsPledge() {
|
|
|
return isPledge;
|
|
|
}
|
|
@@ -2128,7 +2173,7 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
", fContacts='" + fContacts + '\'' +
|
|
|
", fTel='" + fTel + '\'' +
|
|
|
", fCorpid=" + fCorpid +
|
|
|
- ", fShipper=" + fShipper +
|
|
|
+ ", fShipper='" + fShipper + '\'' +
|
|
|
", fTocorpid=" + fTocorpid +
|
|
|
", fStltypeid=" + fStltypeid +
|
|
|
", fBscorpno='" + fBscorpno + '\'' +
|
|
@@ -2150,10 +2195,12 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
", fProductName='" + fProductName + '\'' +
|
|
|
", fMblno='" + fMblno + '\'' +
|
|
|
", fEmblno='" + fEmblno + '\'' +
|
|
|
+ ", fCompany=" + fCompany +
|
|
|
", fVslvoy='" + fVslvoy + '\'' +
|
|
|
", fMarks='" + fMarks + '\'' +
|
|
|
", fEta=" + fEta +
|
|
|
", fCustomno='" + fCustomno + '\'' +
|
|
|
+ ", fEmsSeqNo='" + fEmsSeqNo + '\'' +
|
|
|
", fIfweigh='" + fIfweigh + '\'' +
|
|
|
", fIfpledge='" + fIfpledge + '\'' +
|
|
|
", fIfdamage='" + fIfdamage + '\'' +
|
|
@@ -2200,7 +2247,7 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
", freeContainerDate=" + freeContainerDate +
|
|
|
", fBusinessAttribution=" + fBusinessAttribution +
|
|
|
", fSupervisionUnit=" + fSupervisionUnit +
|
|
|
- ", fDeclarationElements=" + fDeclarationElements +
|
|
|
+ ", fDeclarationElements='" + fDeclarationElements + '\'' +
|
|
|
", fPartNumber='" + fPartNumber + '\'' +
|
|
|
", fIfinspection=" + fIfinspection +
|
|
|
", fValue=" + fValue +
|
|
@@ -2211,6 +2258,26 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
", weightRecoveryDate=" + weightRecoveryDate +
|
|
|
", warehouseStatus=" + warehouseStatus +
|
|
|
", fTimes=" + fTimes +
|
|
|
+ ", fUpdeteStatus=" + fUpdeteStatus +
|
|
|
+ ", fSubmitUpdate=" + fSubmitUpdate +
|
|
|
+ ", remark='" + remark + '\'' +
|
|
|
+ ", fDeleteStatus=" + fDeleteStatus +
|
|
|
+ ", fRemarksFees='" + fRemarksFees + '\'' +
|
|
|
+ ", fCargoPlanning=" + fCargoPlanning +
|
|
|
+ ", fArrivalStatus=" + fArrivalStatus +
|
|
|
+ ", fChargetype='" + fChargetype + '\'' +
|
|
|
+ ", fWeighWeight=" + fWeighWeight +
|
|
|
+ ", fPredictBranch=" + fPredictBranch +
|
|
|
+ ", fGrade='" + fGrade + '\'' +
|
|
|
+ ", fDeliveryDetails='" + fDeliveryDetails + '\'' +
|
|
|
+ ", fSalesmanId=" + fSalesmanId +
|
|
|
+ ", fItemstatus=" + fItemstatus +
|
|
|
+ ", fFeeStatus=" + fFeeStatus +
|
|
|
+ ", fCntrno='" + fCntrno + '\'' +
|
|
|
+ ", fDismountStatus=" + fDismountStatus +
|
|
|
+ ", fServiceitemsNew='" + fServiceitemsNew + '\'' +
|
|
|
+ ", documentSummary='" + documentSummary + '\'' +
|
|
|
+ ", financialBillType='" + financialBillType + '\'' +
|
|
|
", fDateChanged='" + fDateChanged + '\'' +
|
|
|
", loadportidName='" + loadportidName + '\'' +
|
|
|
", destportidName='" + destportidName + '\'' +
|
|
@@ -2223,6 +2290,12 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
", voyidName='" + voyidName + '\'' +
|
|
|
", paymodeName='" + paymodeName + '\'' +
|
|
|
", laneidName='" + laneidName + '\'' +
|
|
|
+ ", billList=" + billList +
|
|
|
+ ", fShipTwo=" + fShipTwo +
|
|
|
+ ", fVoyTwo=" + fVoyTwo +
|
|
|
+ ", fShipTwoName='" + fShipTwoName + '\'' +
|
|
|
+ ", fVoyTwoName='" + fVoyTwoName + '\'' +
|
|
|
+ ", isPledge='" + isPledge + '\'' +
|
|
|
", tWarehousebillsCntrList=" + tWarehousebillsCntrList +
|
|
|
", tWarehousebillsCntritemsList=" + tWarehousebillsCntritemsList +
|
|
|
", tVoyageL=" + tVoyageL +
|
|
@@ -2234,42 +2307,27 @@ public class TWarehouseBills extends BaseEntity {
|
|
|
", corpName='" + corpName + '\'' +
|
|
|
", cLoadDate=" + cLoadDate +
|
|
|
", freeContainerList=" + freeContainerList +
|
|
|
+ ", itemBsDateList=" + itemBsDateList +
|
|
|
", tWarehousebillsfeesDr=" + tWarehousebillsfeesDr +
|
|
|
", warehousebillsfeesCr=" + warehousebillsfeesCr +
|
|
|
", moneyStatus=" + moneyStatus +
|
|
|
+ ", orderId=" + Arrays.toString(orderId) +
|
|
|
+ ", fReceivable=" + fReceivable +
|
|
|
+ ", fRecycle=" + fRecycle +
|
|
|
+ ", fDue=" + fDue +
|
|
|
+ ", fPay=" + fPay +
|
|
|
+ ", fCaregoStatus='" + fCaregoStatus + '\'' +
|
|
|
+ ", orderList=" + orderList +
|
|
|
", timeInterval=" + timeInterval +
|
|
|
+ ", external='" + external + '\'' +
|
|
|
", timeInterval2=" + timeInterval2 +
|
|
|
", fGoodsid=" + fGoodsid +
|
|
|
", delFlag='" + delFlag + '\'' +
|
|
|
", fLocation=" + fLocation +
|
|
|
", fNewTrademodeid=" + fNewTrademodeid +
|
|
|
- ", fWeighWeight=" + fWeighWeight +
|
|
|
- ", fPredictBranch='" + fPredictBranch + '\'' +
|
|
|
- ", fGrade=" + fGrade +
|
|
|
- ", fDeliveryDetails=" + fDeliveryDetails +
|
|
|
- ", fSalesmanId=" + fSalesmanId +
|
|
|
- ", fItemstatus=" + fItemstatus +
|
|
|
- ", fUpdeteStatus='" + fUpdeteStatus + '\'' +
|
|
|
- ", fSubmitUpdate=" + fSubmitUpdate +
|
|
|
- ", fDeleteStatus=" + fDeleteStatus +
|
|
|
- ", fRemarksFees=" + fRemarksFees +
|
|
|
- ", fCargoPlanning=" + fCargoPlanning +
|
|
|
- ", fArrivalStatus=" + fArrivalStatus +
|
|
|
- ", fDismountStatus=" + fDismountStatus +
|
|
|
- ", billList=" + billList +
|
|
|
- ", fServiceitemsNew=" + fServiceitemsNew +
|
|
|
- ", fReceivable=" + fReceivable +
|
|
|
- ", fRecycle=" + fRecycle +
|
|
|
- ", fDue=" + fDue +
|
|
|
- ", fPay=" + fPay +
|
|
|
- ", fCaregoStatus=" + fCaregoStatus +
|
|
|
- ", fShipTwo=" + fShipTwo +
|
|
|
- ", fShipTwoName=" + fShipTwoName +
|
|
|
- ", fVoyTwo=" + fVoyTwo +
|
|
|
- ", fVoyTwoName=" + fVoyTwoName +
|
|
|
- ", pickUpPerson=" + pickUpPerson +
|
|
|
+ ", pickUpPerson='" + pickUpPerson + '\'' +
|
|
|
", pickUpTime=" + pickUpTime +
|
|
|
- ", facilityPerson=" + facilityPerson +
|
|
|
+ ", facilityPerson='" + facilityPerson + '\'' +
|
|
|
", facilityTime=" + facilityTime +
|
|
|
'}';
|
|
|
}
|