Pu Zhibing
4 天以前 0857f1e53b10c29dd6ebd7ce6fd4a5c601a8a7db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.jianguan.elutong.core;
 
import lombok.Getter;
import lombok.Setter;
 
@Getter
@Setter
public class CommonRequest {
    private String encryptType;
    private String signType;
    private String filename;
    private String bizContent;
    private String sign;
    private String timestamp;
    private String version = "1.0";
}