You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
528 B
39 lines
528 B
3 years ago
|
package com.epmet.dto;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 大华设备鉴权信息
|
||
|
*
|
||
|
* @author generator generator@elink-cn.com
|
||
|
* @since v1.0.0 2022-04-22
|
||
|
*/
|
||
|
@Data
|
||
|
public class DhTokenDTO implements Serializable {
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/**
|
||
|
* 主键
|
||
|
*/
|
||
|
private String id;
|
||
|
|
||
|
/**
|
||
|
* loginName
|
||
|
*/
|
||
|
private String loginName;
|
||
|
|
||
|
/**
|
||
|
* token
|
||
|
*/
|
||
|
private String token;
|
||
|
|
||
|
/**
|
||
|
* publicKey
|
||
|
*/
|
||
|
private String publicKey;
|
||
|
|
||
|
}
|