You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
661 B
C#
30 lines
661 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 任务扩展报文
|
|
/// </summary>
|
|
public class TaskManageOrderExtMessageInfo
|
|
{
|
|
/// <summary>
|
|
/// 序列化报文
|
|
/// </summary>
|
|
public string SerialMsg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 序列化报文类型 JSON-JSON序列化
|
|
/// </summary>
|
|
public string SerialType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务类型
|
|
/// </summary>
|
|
public string BusiType { get; set; }
|
|
}
|
|
}
|