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.
27 lines
558 B
27 lines
558 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XS_Model
|
|
{
|
|
public class T_RESULT
|
|
{
|
|
/// <summary>
|
|
/// Wms任务号
|
|
/// </summary>
|
|
public string taskId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 处理状态。00,成功,01异常
|
|
/// </summary>
|
|
public string code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回消息,描述信息
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
}
|
|
}
|