This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.supervision.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class LoginResVO {
@ApiModelProperty("主键")
private String id;
@ApiModelProperty("用户账户")
private String account;
@ApiModelProperty("用户名称")
private String name;
@ApiModelProperty("用户角色编码,0管理员 1普通用户(学生) 2运营人员(配置)")
private String roleCode;
@ApiModelProperty("token")
private String token;
@ApiModelProperty(hidden = true)
private static final long serialVersionUID = 1L;
}