using System.Collections.Generic; namespace WX.CRM.CRMServices.SMS.InterfaceExec { public class QQSmsPrams { /// /// 手机号码列表 /// public List tel { get; set; } /// /// 消息内容 /// public string msg { get; set; } /// /// app凭证 /// public string sig { get; set; } /// /// 0:普通短信;1:营销短信 /// public string type { get; set; } /// /// 可选字段,通道扩展码,在短信回复场景中,腾讯server会原样返回,开发者可依此区分是哪种类型的回复 /// public string extend { get; set; } /// /// 可选字段,用户的session内容,腾讯server回包中会原样返回 /// public string ext { get; set; } } public class Tels { /// /// 国家码 /// public string nationcode { get; set; } /// /// 手机号码 /// public string phone { get; set; } } }