1.出库界面展示当前正在进行出库的单据
2.后台退出了入库模式 通知前台扫码枪退出入库 3.对接盟讯公司登录Mes接口 4.接口记录增加本地日志排查问题
This commit is contained in:
13
WCS.Model/ApiModel/MXBackgroundThread/mesLoginRequest.cs
Normal file
13
WCS.Model/ApiModel/MXBackgroundThread/mesLoginRequest.cs
Normal file
@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
@ -34,6 +34,7 @@ namespace WCS.Model.ApiModel.OutStore
|
||||
}
|
||||
public bool isSelected;
|
||||
public int RowNumber { get; set; }
|
||||
public bool IsOuting { get; set; }
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
protected virtual void OnPropertyChanged(string propertyName)
|
||||
|
@ -21,6 +21,10 @@ namespace WCS.Model.WebSocketModel
|
||||
/// </summary>
|
||||
public string ClientIp { get; set; }
|
||||
public DateTime LastSendTime { get; set; }
|
||||
/// <summary>
|
||||
/// 消息创建时间 跟消息时效性有关
|
||||
/// </summary>
|
||||
public DateTime CreateTime { get; set; } = DateTime.Now;
|
||||
public bool ClientIsReceived { get; set; }
|
||||
|
||||
//恢复正常需要消除的报警guid
|
||||
@ -57,5 +61,6 @@ namespace WCS.Model.WebSocketModel
|
||||
通知刷新出库 = 51,
|
||||
通知刷新盘点 = 52,
|
||||
通知刷新盟讯盘点 = 53,
|
||||
通知前台结束入库 = 54,
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user