1.增加盟讯公司业务逻辑相关适配 前后端增加配置参数“ISMX”进行控制
2.前端websocket取消心跳机制(原有心跳和断线重连当服务端网线断开后需要等tcp保活期到期后才能发现重连),自己实现心跳和重连 3.前端关闭后任占用后台线程问题修复
This commit is contained in:
72
WCS.Model/ApiModel/MXBackgroundThread/PickOrderRequest.cs
Normal file
72
WCS.Model/ApiModel/MXBackgroundThread/PickOrderRequest.cs
Normal file
@ -0,0 +1,72 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.MXBackgroundThread
|
||||
{
|
||||
public class PickOrderRequest
|
||||
{
|
||||
public string orderProdNumber { get; set; }
|
||||
public string orderWorkNumber { get; set; }
|
||||
public string pickBillNumber { get; set; }
|
||||
}
|
||||
|
||||
public class PickOrderResponse
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int code { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string msg { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public List<PickOrder> data { get; set; }
|
||||
}
|
||||
public class PickOrder
|
||||
{
|
||||
public bool IsSelected { get; set; }
|
||||
public int id { get; set; }
|
||||
public string pickBillNumber { get; set; }
|
||||
public string relationPickNumber { get; set; }
|
||||
public string orderProdIds { get; set; }
|
||||
public string orderProdNumbers { get; set; }
|
||||
public string orderWorkIds { get; set; }
|
||||
public string orderWorkNumbers { get; set; }
|
||||
public string dictType { get; set; }
|
||||
public string dictTypeStr
|
||||
{
|
||||
get
|
||||
{
|
||||
switch (dictType)
|
||||
{
|
||||
case "1":
|
||||
return "生产领料";
|
||||
default: return "其他";
|
||||
}
|
||||
}
|
||||
}
|
||||
public string dictStatus { get; set; }
|
||||
public string dictStatusStr
|
||||
{
|
||||
get
|
||||
{
|
||||
switch (dictStatus)
|
||||
{
|
||||
case "15":
|
||||
return "待领料";
|
||||
case "10":
|
||||
return "部分领料";
|
||||
default: return dictStatus.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
public string createdBy { get; set; }
|
||||
public string createdDt { get; set; }
|
||||
public string updatedBy { get; set; }
|
||||
public string updatedDt { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user