1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.gistack.system.user.sync.dto;
|
|
| import lombok.Data;
|
| /**
| * @author: wd
| * Date: 2021/1/26 18:35
| * Description :
| */
| @Data
| public class ApiPushDTO {
| private String syncType;
| private String dataType;
| private String timestamp;
| private String sign;
| private String transactionId;
| private String syncData;
| }
|
|