1、调整导入运单
2、调整对账
This commit is contained in:
+29
@@ -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;
|
||||
}
|
||||
+2
@@ -32,4 +32,6 @@ public class VoucherManage extends TenantEntity {
|
||||
private Integer relatedWaybillCount;
|
||||
private Integer unRelatedWaybillCount;
|
||||
private String auditStatus;
|
||||
@Schema(description = "审核驳回原因")
|
||||
private String rejectReason;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user