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.shanzhu.oe.entity;
import lombok.Data;
/**
* 用户登录信息
*
* @author: ShanZhu
* @date: 2023-11-20
*/
@Data
public class Login {
* 用户名(id)
private Integer username;
* 密码
private String password;
}