Files
wcs/WCS.Model/ApiModel/MXBackgroundThread/InputStockInRequest.cs
hehaibing-1996 00621bcd55 1.增加盟讯公司业务逻辑相关适配 前后端增加配置参数“ISMX”进行控制
2.前端websocket取消心跳机制(原有心跳和断线重连当服务端网线断开后需要等tcp保活期到期后才能发现重连),自己实现心跳和重连
3.前端关闭后任占用后台线程问题修复
2024-05-25 17:25:27 +08:00

26 lines
557 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MXBackgroundThread
{
public class InputStockInRequest
{
public string materialBar { get; set; }
public string shelfCode { get; set; }
public string shelfX { get; set; }
public string shelfY { get; set; }
public string shelfZ { get; set; }
public string inUser { get; set; } = string.Empty;
public string inTime { get; set; }
public int warehouseType { get; set; } = 20;
}
}