‘liusuyi’
2023-08-22 bbafde6d4aecbbfaa452570faeaa25b4058d3a28
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
package com.ruoyi.authorize.domain;
/**
 * @ClassName ParsLicenseInfo
 * @Description: 申请解密信息实体类
 * @Author 刘苏义
 * @Date 2022/11/30 17:18
 * @Version 1.0
 */
public class ParsLicenseInfo {
    public String machineCode;//机器码
    public String EncryptedStr;//加密串
 
    public String getMachineCode() {
        return machineCode;
    }
 
    public void setMachineCode(String machineCode) {
        this.machineCode = machineCode;
    }
 
    public String getEncryptedStr() {
        return EncryptedStr;
    }
 
    public void setEncryptedStr(String encryptedStr) {
        EncryptedStr = encryptedStr;
    }
}