1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace MonitorAlarm
| {
| public interface ISMSHandler
| {
| string SendSMS(string userid, string timestamp, string sgin, string mobile, string content, string sendTime, string extno);//发送
| string Mo(string userid,string timestamp, string sgin);//上行接口
| string Report(string userid, string timestamp, string sign, string statusNum); //状态报告接口
| string Balance(string userid, string timestamp, string sgin); //查询余额
| string Upassword(string userid, string account, string password, string newpwd, string renewpwd); //密码修改接口
| string CheckKey(string userid, string timestamp,string sgin, string content); //非法关键词查询
| }
| }
|
|