Files
wcs/WCS.Model/ApiModel/MatInventoryDetail/MatInventoryDetailModel.cs
hehaibing-1996 e89b64ea3a !提交代码
2024-04-15 18:43:28 +08:00

35 lines
1.0 KiB
C#

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; }
}
}