1、调整凭证
2、调整运单
This commit is contained in:
+6
@@ -145,4 +145,10 @@ public class TransportPlan extends TenantEntity {
|
||||
@Schema(description = "备注")
|
||||
private String remark;
|
||||
|
||||
@Schema(description = "里程(km)")
|
||||
private java.math.BigDecimal mileage;
|
||||
|
||||
@Schema(description = "同一计划标识号")
|
||||
private String planGroupId;
|
||||
|
||||
}
|
||||
|
||||
+1
@@ -26,6 +26,7 @@ public class VoucherManage extends TenantEntity {
|
||||
private Long fileTaskId;
|
||||
private String uploadSource;
|
||||
private String carrierName;
|
||||
private Long carrierId;
|
||||
private String processStatus;
|
||||
private Integer voucherCount;
|
||||
private Integer relatedWaybillCount;
|
||||
|
||||
+3
@@ -4,6 +4,7 @@ import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 凭证解压文件详情。
|
||||
@@ -29,4 +30,6 @@ public class VoucherFileVO implements Serializable {
|
||||
private String fileType;
|
||||
private Integer matched;
|
||||
private String url;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/**
|
||||
* BladeX Commercial License Agreement
|
||||
* Copyright (c) 2018-2099, https://bladex.cn. All rights reserved.
|
||||
*/
|
||||
package org.springblade.transport.pojo.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/** 执行凭证车牌文件夹详情。 */
|
||||
@Data
|
||||
public class VoucherFolderVO implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private Long voucherId;
|
||||
private String voucherBatchNo;
|
||||
private String voucherNo;
|
||||
private String plateNo;
|
||||
private String folderName;
|
||||
private Long waybillId;
|
||||
private String waybillNo;
|
||||
private Integer matched;
|
||||
private String processStatus;
|
||||
private String fileName;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
private List<VoucherFileVO> files;
|
||||
}
|
||||
Reference in New Issue
Block a user