Files
wcs/WCS.Model/ApiModel/MXBackgroundThread/mesLoginRequest.cs
hehaibing-1996 46321e340b 1.出库界面展示当前正在进行出库的单据
2.后台退出了入库模式 通知前台扫码枪退出入库
3.对接盟讯公司登录Mes接口
4.接口记录增加本地日志排查问题
2024-05-30 15:48:44 +08:00

14 lines
282 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MXBackgroundThread
{
public class MXResponse
{
public int code { get; set; }
public string msg { get; set; }
public object data { get; set; }
}
}