2024-12-08 21:23:35 +08:00

17 lines
315 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package cn.wzpmc.filemanager.entities.user;
import com.alibaba.fastjson2.annotation.JSONCompiled;
import lombok.Data;
@Data
@JSONCompiled
public class UserLoginRequest {
/**
* 用户名
*/
private String username;
/**
* 密码通过MD5摘要
*/
private String password;
}