1
This commit is contained in:
@ -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; }
|
||||
|
27
WCS.Model/ApiModel/InStore/QueryByMatSnRequestSingle.cs
Normal file
27
WCS.Model/ApiModel/InStore/QueryByMatSnRequestSingle.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.OutStore
|
||||
{
|
||||
public class GetOutOrderDetailRequestSingle:RequestBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user