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
| package com.ots.project.tool.sms;
| import lombok.Getter;
| import lombok.Setter;
| @Getter
| @Setter
| public class Returnsms {
| public final static String RET_SUCCESS = "Success";
| public final static String RET_FAILD = "Faild";
|
| private String returnstatus;
|
| private String message;
|
| private String remainpoint;
|
| private String taskID;
|
| private String successCounts;
|
| private String payinfo;
|
| private String overage;
|
| private String sendTotal;
| }
|
|