using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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