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
664 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.TaskPlat.Dtos
{
/// <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; }
}
}