liusheng
2025-04-02 acd62c1684cbde71954252ffdf89d0918491e6fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.ruoyi.common.core.domain.model;
 
import lombok.Data;
 
/**
 * 用户登录对象
 *
 * @author ruoyi
 */
@Data
public class LoginBody {
    /**
     * 用户名
     */
    private String username;
 
    /**
     * 用户密码
     */
    private String password;
 
    /**
     * 验证码
     */
    private String code;
 
    /**
     * 唯一标识
     */
    private String uuid;
 
    /**
     * 机构标识
     */
    private String orgid;
 
}