using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExternalDataSync
{
public class msgResHeader
{
///
/// 任务ID
///
public string taskId
{
get;
set;
}
///
/// 返回结果
///
public string code
{
get;
set;
}
///
/// 返回消息
///
public string msg
{
get;
set;
}
///
/// 返回结果集
///
public string returnData
{
get;
set;
}
}
}