1.增加手动自检功能,主页增加状态显示

This commit is contained in:
hehaibing-1996
2024-06-11 14:03:06 +08:00
parent a87a93ea11
commit 95437c2ccf
24 changed files with 576 additions and 123 deletions

View File

@ -8,10 +8,10 @@ namespace WCS.Model
{
public class GetShelfStatusResponse : ResponseBase
{
public List<Shelf> Data { get; set; }
public List<ShelfModel> Data { get; set; }
}
public class Shelf
public class ShelfModel
{
public int ShelfId { get; set; }
@ -33,5 +33,9 @@ namespace WCS.Model
/// 货架组别
/// </summary>
public string GroupName { get; set; }
/// <summary>
/// 单据号
/// </summary>
public string OrderNumber { get; set; }
}
}

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.OutStore
{
public class ResponseCommonModify<T>:ResponseCommon
{
public ResponseCommonDataDetail<T> Data { get; set; }
}
public class ResponseCommonDataDetail<T>
{
public List<T> Details { get; set; }
}
}

View File

@ -4,19 +4,12 @@ using System.Text;
namespace WCS.Model.ApiModel.OutStore
{
public class OutOrderMatDetailModelSingle
public class OutOrderMatDetailModelSingle:RequestBase
{
public int orderId { get; set; }
public string orderNumber { get; set; }
public int OrderId { get; set; }
public string OrderNumber { get; set; }
public int MatId { get; set; }
public string MatSn { get; set; }
public string MatCode { get; set; }
public string MatName { get; set; }
public string MatSpec { get; set; }
public string MatBatch { get; set; }
public int MatQty { get; set; }
public string MatCustomer { get; set; }
public string MatSupplier { get; set; }
public int Qty { get; set; }
public string userName { get; set; }
}
}

View File

@ -57,6 +57,9 @@ namespace WCS.Model.WebSocketModel
= 13,
退 = 14,
= 15,
= 16,
//通知类
= 50,
= 51,
@ -64,5 +67,6 @@ namespace WCS.Model.WebSocketModel
= 53,
= 54,
= 55,
= 56,
}
}