!提交代码
This commit is contained in:
@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.MatInventoryDetail
|
||||
{
|
||||
public class GetMatInventoryDetailRequest : PageQueryRequestBase
|
||||
{
|
||||
#region 物料属性
|
||||
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 string MatSupplier { get; set; }
|
||||
|
||||
public string MatCustomer { get; set; }
|
||||
#endregion
|
||||
|
||||
#region 库位属性
|
||||
public List<int> ShelfTypeId { get; set; }
|
||||
public List<int> ShelfId { get; set; }
|
||||
public int StoreId { get; set; }
|
||||
public string StoreCode { get; set; }
|
||||
#endregion
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.MatInventoryDetail
|
||||
{
|
||||
public class MatInventoryDetailModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
#region 库位属性
|
||||
public int StoreId { get; set; }
|
||||
public string StoreCode { get; set; }
|
||||
//public StoreInfo StoreInfo { get; set; }
|
||||
#endregion
|
||||
|
||||
#region 物料属性
|
||||
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? MatSupplier { get; set; }
|
||||
public string? MatCustomer { get; set; }
|
||||
#endregion
|
||||
|
||||
public DateTime InstoreTime { get; set; } = DateTime.Now;
|
||||
public string InstoreUser { get; set; }
|
||||
public bool IsLocked { get; set; } = false;
|
||||
public int RowNumber { get; set; }
|
||||
public bool IsSelected { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user