first commit

This commit is contained in:
Ray
2026-02-19 03:37:37 +08:00
commit ccfd8c79a4
2813 changed files with 453657 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
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;
}
}