Lius
2024-11-04 d603739c0320f355cfc3152865918729fea790de
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package org.jeecg.config.license.entity;
 
import io.swagger.annotations.ApiModelProperty;
 
/**
 * @Author: lius
 * @ClassName LicenseVerifyParam
 * @date 2024/11/2 16:00
 */
 
public class LicenseVerifyParam {
 
    @ApiModelProperty("证书subject")
    private String subject;
 
    @ApiModelProperty("公钥别称")
    private String publicAlias;
 
    @ApiModelProperty("访问公钥库的密码")
    private String storePass;
 
    @ApiModelProperty("证书生成路径")
    private String licensePath;
 
    @ApiModelProperty("密钥库存储路径")
    private String publicKeysStorePath;
 
    public String getSubject() {
        return subject;
    }
 
    public void setSubject(String subject) {
        this.subject = subject;
    }
 
    public String getPublicAlias() {
        return publicAlias;
    }
 
    public void setPublicAlias(String publicAlias) {
        this.publicAlias = publicAlias;
    }
 
    public String getStorePass() {
        return storePass;
    }
 
    public void setStorePass(String storePass) {
        this.storePass = storePass;
    }
 
    public String getLicensePath() {
        return licensePath;
    }
 
    public void setLicensePath(String licensePath) {
        this.licensePath = licensePath;
    }
 
    public String getPublicKeysStorePath() {
        return publicKeysStorePath;
    }
 
    public void setPublicKeysStorePath(String publicKeysStorePath) {
        this.publicKeysStorePath = publicKeysStorePath;
    }
}