Files
wcs/WCS.Model/ApiModel/InOutRecord/InOutRecordModel.cs
hehaibing-1996 3c2cc27467 提交代码
2024-05-09 16:38:47 +08:00

45 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.InOutRecord
{
public class InOutRecordModel
{
public int Id { get; set; }
#region
public int StoreId { get; set; }
public string StoreCode { 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 string? OrderNumber { get; set; }
public DirectionEnum? Direction { get; set; }
public bool IsUpload { get; set; } = false;
public DateTime OperateTime { get; set; }
public string OperateUser { get; set; }
public int RowNumber { get; set; }
public bool IsSelected { get; set; }
}
public enum DirectionEnum
{
= 0,
= 1,
= 2,
= 3,
}
}