All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lkqm.hcnet.model.DeviceInfo Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.github.lkqm.hcnet.model;

import java.io.Serializable;
import lombok.Data;

/**
 * 设备信息
 */
@Data
public class DeviceInfo implements Serializable {

    /**
     * 登录标识
     */
    private Long userId;

    /**
     * 设备ip地址
     */
    private String deviceIp;

    /**
     * 设备名称
     */
    private String deviceName;

    /**
     * 设备序列号
     */
    private String serialNumber;

    /**
     * 设备mac地址
     */
    private String deviceMacAddr;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy