调整结算
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
package org.springblade.transport.pojo.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/** 正式结算发票认领请求。 */
|
||||
@Data
|
||||
public class FormalSettlementInvoiceClaimRequest implements Serializable {
|
||||
@Serial private static final long serialVersionUID = 1L;
|
||||
private Long formalSettlementId;
|
||||
private List<FormalSettlementSaveRequest.Invoice> invoices;
|
||||
}
|
||||
+6
@@ -47,6 +47,12 @@ public class PreSettlementChangeRecord extends TenantEntity {
|
||||
@Schema(description = "变更内容")
|
||||
private String changeContent;
|
||||
|
||||
@Schema(description = "变更前数据JSON")
|
||||
private String beforeData;
|
||||
|
||||
@Schema(description = "变更后数据JSON")
|
||||
private String afterData;
|
||||
|
||||
@Schema(description = "操作人")
|
||||
private String operatorName;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user