This commit is contained in:
陶坤
2024-05-15 18:49:11 +08:00
parent 65bb836721
commit e3d3726cbe
18 changed files with 446 additions and 70 deletions

View File

@ -4,7 +4,7 @@ using System.Text;
namespace WCS.Model.ApiModel.Home
{
public class ShelfTypeModel()
public class ShelfTypeModel
{
public int Id { get; set; }
public string ShelfTypeName { get; set; }

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model
{
public class QueryByMatSnRequestSingle: RequestBase
{
public List<MatSnListDetail> MatSnList { get; set; }
public string ShelfCode { get; set; } = string.Empty;
public string IpAddress { get; set; } = string.Empty;
public bool IsSingleLightIn { get; set; } = false;
public class MatSnListDetail
{
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; }
}
}
}

View File

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.OutStore
{
public class GetOutOrderDetailRequestSingle:RequestBase
{
}
}

View File

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WCS.BLL.DbModels;
namespace WCS.Model
{
@ -27,4 +28,35 @@ namespace WCS.Model
{
public T Data { get; set; }
}
public class ResponseCommonSingle : ResponseBase
{
public List<Detail> Data { get; set; }
}
public class Detail
{
public string matsn { get; set; }
public string result { get; set; }
public string reason { get; set; }
}
public class OutResponseCommonSingle : ResponseBase
{
public List<OutDetail> Data { get; set; }
}
public class OutDetail
{
public int OrderId { get; set; }
public string OrderNumber { get; set; }
public string MatCode { get; set; }
public string MatBatch { get; set; }
public int ReqQty { get; set; }
public DateTime CreateTime { get; set; }
public string CreateUser { get; set; }
public string MatName { get; set; }
public int OutQty { get; set; }
public string LightColor { get; set; }
}
}