zhanghua
2024-12-20 1f45c25ea725445d7e78e8d5da6e72150f35f2eb
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
package com.dahua.netsdk.module.entity;
 
import com.dahua.netsdk.lib.enumeration.NET_EM_2DCODE_TYPE;
 
import java.io.Serializable;
 
/**
 * @author 47081
 * @version 1.0
 * @description 二维码信息
 * @date 2020/9/14
 */
public class QRCodeInfo implements Serializable {
    private NET_EM_2DCODE_TYPE emType;
    private String code;
 
    public NET_EM_2DCODE_TYPE getEmType() {
        return emType;
    }
 
    public void setEmType(NET_EM_2DCODE_TYPE emType) {
        this.emType = emType;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
}