1
zj
2025-03-20 697c08d94a3c26aaa970c467775989bb548fb6c2
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
package com.chuanglan.sms.request;
 
public class SmsReportRequest {
    /**
     * 用户账号,必填
     */
    private String account;
    /**
     * 用户密码,必填
     */
    private String password;
    /**
     * 拉取个数(最大100,默认20),选填
     */
    private String count;
    
    public SmsReportRequest() {
        
    }
    public SmsReportRequest(String account, String password,String count) {
        super();
        this.account = account;
        this.password = password;
        this.count = count;
        
    }
    public String getAccount() {
        return account;
    }
    public void setAccount(String account) {
        this.account = account;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
    public String getCount() {
        return count;
    }
    public void setCount(String count) {
        this.count = count;
    }
 
    
    
}