‘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
29
package com.ruoyi.authorize.domain;
/**
 * @ClassName AuthorizeInfo
 * @Description: 申请授权信息实体类
 * @Author 刘苏义
 * @Date 2022/11/30 17:18
 * @Version 1.0
 */
public class AuthorizeInfo
{
    private String systemAuthorizeDate;
    private String machineCode;
 
    public String getSystemAuthorizeDate() {
        return systemAuthorizeDate;
    }
 
    public void setSystemAuthorizeDate(String systemAuthorizeDate) {
        this.systemAuthorizeDate = systemAuthorizeDate;
    }
 
    public String getMachineCode() {
        return machineCode;
    }
 
    public void setMachineCode(String machineCode) {
        this.machineCode = machineCode;
    }
}