You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
575 B
17 lines
575 B
1 year ago
|
using System.Collections.Generic;
|
||
|
using ChangKeTec.Wms.Models.Enums;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class StockWhereCondition
|
||
|
{
|
||
|
public string BarCode { get; set; }
|
||
|
public string LocCode { get; set; }
|
||
|
public string PartCode { get; set; }
|
||
|
public string Batch { get; set; }
|
||
|
// public EnumStockState State { get; set; }
|
||
|
public string EqptCode { get; set; }
|
||
|
public List<string> AreaCodes { get; set; }
|
||
|
public List<EnumStockState> States { get; set; }=new List<EnumStockState>{};
|
||
|
}
|
||
|
}
|