using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NSC { /// /// 功能:服务数据缓存结构体 /// 作者:王昊昇 /// 时间:2012.11.8 /// internal struct ServiceDataBuffer { /// /// 服务流水号 /// internal string ServiceSN; /// /// 服务数据 /// internal NetServiceStruct ServiceData; /// /// 提交时间 /// internal DateTime SubmitTime; /// /// 服务执行完成标识 /// internal bool Completed; } }