using System; using System.Collections.Generic; using System.Text; namespace LYFZ.StandardInterface { public interface IHTTPSmsSendReturnInfo { /// <summary> /// 源字符串 /// </summary> string SourceString { get; set; } /// <summary> /// 发送条数 /// </summary> int SendCount { get; set; } /// <summary> /// 当次消费金额 /// </summary> decimal Consumption { get; set; } /// <summary> /// 总体余额(元) /// </summary> decimal Tmoney { get; set; } /// <summary> /// 总体余额_剩余条数 /// </summary> int RemainingNumber { get; set; } /// <summary> /// 短信编号 /// </summary> string Sid { get; set; } /// <summary> /// 返回状态 状态码:代码说明 /// </summary> string ReturnStatus { get; set; } /// <summary> /// 返回发送状态码 000 为发送成功,其它为失败 /// </summary> string ReturnCode { get; set; } /// <summary> /// 单价 /// </summary> decimal Price { get; } /// <summary> /// 发送成功的手机号 多个以“,”号分隔 /// </summary> string SendSuccessTel { get; set; } /// <summary> /// 发送失败的手机号 多个以“,”号分隔 /// </summary> string SendFaileTel { get; set; } /// <summary> /// 短信接口服务商 /// </summary> string SMSInterface { get; } } }