测试用户
2023-04-13 43393f2bb11cbf9e6af40077bbc5284660e8a754
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.deloitte.system.request;
 
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.util.List;
 
@Data
@AllArgsConstructor
@NoArgsConstructor
public class TxConfirmDto {
    private String txId;
    private String sfRecordId;
    private Integer isSuccess;
    private List<ConfimrListDto> idList;
 
    public TxConfirmDto(String txId, String sfRecordId, Integer isSuccess) {
        this.txId = txId;
        this.sfRecordId = sfRecordId;
        this.isSuccess = isSuccess;
    }
 
    @Data
    public static class ConfimrListDto{
        private String sfRecordId;
        private String awsId;
    }
}