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.
20 lines
353 B
20 lines
353 B
package com.epmet.dto.result;
|
|
|
|
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;
|
|
}
|
|
|