新版仿ok交易所-后端
1
zj
2026-02-03 c7c4c4eec809cfd5e399edab50fae9bf68681585
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * Copyright (c) 2018-2999 广州市蓝海创新科技有限公司 All rights reserved.
 *
 * https://www.mall4j.com/
 *
 * 未经允许,不可做商业用途!
 *
 * 版权所有,侵权必究!
 */
 
package com.yami.trading.bean.bo;
 
import java.util.Map;
 
import com.yami.trading.bean.enums.SmsType;
 
public class SmsInfoBo {
 
    private SmsType smsType;
 
    private String userId;
 
    private String mobile;
 
    private Map<String, String> params;
 
 
 
 
    public SmsInfoBo(SmsType smsType, String userId, String mobile, Map<String, String> params) {
        this.smsType = smsType;
        this.userId = userId;
        this.mobile = mobile;
        this.params = params;
    }
 
    public SmsType getSmsType() {
        return smsType;
    }
 
    public void setSmsType(SmsType smsType) {
        this.smsType = smsType;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getMobile() {
        return mobile;
    }
 
    public void setMobile(String mobile) {
        this.mobile = mobile;
    }
 
    public Map<String, String> getParams() {
        return params;
    }
 
    public void setParams(Map<String, String> params) {
        this.params = params;
    }
}