[测评系统]--测评系统核心代码库
linzhijie
2023-05-17 ce7c778150b82b7106e9edebbb6d69036bd389f3
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;
}