提交代码
This commit is contained in:
@ -37,9 +37,9 @@ namespace WCS.BLL.HardWare
|
||||
/// </summary>
|
||||
public Mode CurentMode { get; set; }
|
||||
|
||||
public MatInfoModel InStoreData { get; set; }
|
||||
public MatInfoResponse InStoreData { get; set; }
|
||||
|
||||
public string OutOrderNumber { get; set; }//出库模式中的单据
|
||||
public string OrderNumber { get; set; }//出库/盘点模式中的单据号
|
||||
|
||||
public string ModulesStr { get; set; }
|
||||
|
||||
|
@ -16,9 +16,9 @@ namespace WCS.BLL.HardWare
|
||||
public Mode CurentMode { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
||||
public string ModulesStr { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
||||
public string GroupName { get; set; }
|
||||
public MatInfoModel InStoreData { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
||||
public MatInfoResponse InStoreData { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
||||
|
||||
public string OutOrderNumber { get; set; }
|
||||
public string OrderNumber { get; set; }
|
||||
|
||||
public void GoInInstore(string IPAdress)
|
||||
{
|
||||
|
@ -96,9 +96,9 @@ namespace WCS.BLL.HardWare
|
||||
|
||||
public string? InstoreIpAddress { get; set; } = string.Empty;
|
||||
|
||||
public MatInfoModel InStoreData { get; set; }
|
||||
public MatInfoResponse InStoreData { get; set; }
|
||||
|
||||
public string OutOrderNumber { get; set; }
|
||||
public string OrderNumber { get; set; }
|
||||
|
||||
public void GoInInstore(string? IPAddress)
|
||||
{
|
||||
@ -178,18 +178,18 @@ namespace WCS.BLL.HardWare
|
||||
|
||||
public void GoInStocktaking()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
this.CurentMode = Mode.盘点模式;
|
||||
}
|
||||
|
||||
|
||||
public void GoOutOutstore()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
this.CurentMode = Mode.待机模式;
|
||||
}
|
||||
|
||||
public void GoOutStocktaking()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
this.CurentMode = Mode.待机模式;
|
||||
}
|
||||
|
||||
void IShelfBase.Reset()
|
||||
|
Reference in New Issue
Block a user