fuliqi
2024-08-09 f1b16550e9a391001d7fadcc51c7320379e43d4a
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
package com.ycl.platform.domain.param.HK;
 
import lombok.Data;
 
@Data
public class HKLoginParam {
    /**
     * 用户名
     */
    private String userName;
    /**
     * 密码
     */
    private String password;
    /**
     * 请求地址
     */
    private String serviceUrl;
    /**
     *
     */
    private String imageCode;
    /**
     *
     */
    private String codeId;
    /**
     *
     */
    private Integer userType;
    /**
     * 语言
     */
    private String lang;
}