You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
742 B
33 lines
742 B
4 years ago
|
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;
|
||
|
}
|
||
|
}
|