安睿特接口
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.

26 lines
566 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XS_Model
{
public class T_CT_RESULT
{
/// <summary>
/// Wms任务号
/// </summary>
public string device_code { get; set; }
/// <summary>
/// 处理状态。00,成功,01异常
/// </summary>
public string code { get; set; }
/// <summary>
/// 返回消息,描述信息
/// </summary>
public string Mag { get; set; }
}
}