using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NSC { /// /// 功能:公共服务数据结构 /// 作者:王昊昇 /// 时间:2012.11.8 /// public class NetServiceStruct { /// /// 创建NetServiceStruct类的新实例 /// public NetServiceStruct() { Params = new Dictionary(); Returns = new Dictionary(); ExceptionType = Common.Data.ExceptionType.NoneException; ServiceName = ""; } /// /// 应用系统类型 /// public string FirmwareModel { get; set; } /// /// 应用系统版本 /// public string FirmwareVersion { get; set; } /// /// 服务名称 /// public string ServiceName { get; set; } /// /// 服务流水号 /// public string ServiceSN { get; set; } /// /// 登录用户姓名 /// public string UserName { get; set; } /// /// 异常模式 /// public Common.Data.ExceptionType ExceptionType { get; set; } /// /// 数据传输模式 /// public Common.Data.SyncType SyncType { get; set; } /// /// 参数列表 /// public Dictionary Params { get; set; } /// /// 返回列表 /// public Dictionary Returns { get; set; } } }