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.
21 lines
353 B
21 lines
353 B
5 years ago
|
package com.epmet.dto.result;
|
||
6 years ago
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
/**
|
||
|
* @Description 登录接口返参DTO
|
||
|
* @Author yinzuomei
|
||
|
* @Date 2020/3/14 15:10
|
||
|
*/
|
||
|
@Data
|
||
|
public class UserTokenResultDTO implements Serializable {
|
||
|
private static final long serialVersionUID = 5214475907074876716L;
|
||
|
|
||
|
/**
|
||
|
* 令牌
|
||
|
*/
|
||
|
private String token;
|
||
|
}
|