Files
123123/comm/Kernel/src/com/chuanglan/sms/request/SmsPullRequest.java
2026-02-19 03:37:37 +08:00

49 lines
840 B
Java
Executable File
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 com.chuanglan.sms.request;
public class SmsPullRequest {
/**
* 用户账号,必填
*/
private String account;
/**
* 用户密码,必填
*/
private String password;
/**
* 拉取个数最大100默认20选填
*/
private String count;
public SmsPullRequest() {
}
public SmsPullRequest(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;
}
}