1.增加盟讯公司业务逻辑相关适配 前后端增加配置参数“ISMX”进行控制
2.前端websocket取消心跳机制(原有心跳和断线重连当服务端网线断开后需要等tcp保活期到期后才能发现重连),自己实现心跳和重连 3.前端关闭后任占用后台线程问题修复
This commit is contained in:
49
WCS.Model/ApiModel/MXBackgroundThread/QueryByBar.cs
Normal file
49
WCS.Model/ApiModel/MXBackgroundThread/QueryByBar.cs
Normal file
@ -0,0 +1,49 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.MXBackgroundThread
|
||||
{
|
||||
public class QueryBybarRequest
|
||||
{
|
||||
//条码
|
||||
public string materialBar { get; set; }
|
||||
}
|
||||
|
||||
public class InStoreDto
|
||||
{
|
||||
public string materialBar { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string materialCode { get; set; }
|
||||
/// <summary>
|
||||
/// 有源蜂鸣器
|
||||
/// </summary>
|
||||
public string materialName { get; set; }
|
||||
/// <summary>
|
||||
/// TMB09A03/5X9电压3V
|
||||
/// </summary>
|
||||
public string materialSpec { get; set; }
|
||||
|
||||
public double materialQty { get; set; }
|
||||
|
||||
public string batchNo { get; set; }
|
||||
}
|
||||
|
||||
public class QueryBybarResponse
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int code { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string message { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public List<InStoreDto> data { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user