1、调整导入运单

2、调整对账
This commit is contained in:
2026-09-10 02:01:51 +08:00
parent 049a46227d
commit e7d7e61846
11 changed files with 486 additions and 46 deletions
@@ -0,0 +1,29 @@
/**
* BladeX Commercial License Agreement
* Copyright (c) 2018-2099, https://bladex.cn. All rights reserved.
*/
package org.springblade.transport.pojo.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
import java.util.List;
/**
* 凭证更换运单批次请求。
*/
@Data
@Schema(description = "凭证更换运单批次请求")
public class VoucherManageChangeBatchRequest implements Serializable {
@Serial
private static final long serialVersionUID = 1L;
@Schema(description = "凭证批次ID")
private Long voucherId;
@Schema(description = "运单导入批次对应的运单ID")
private List<Long> waybillImportBatchIds;
}
@@ -32,4 +32,6 @@ public class VoucherManage extends TenantEntity {
private Integer relatedWaybillCount;
private Integer unRelatedWaybillCount;
private String auditStatus;
@Schema(description = "审核驳回原因")
private String rejectReason;
}