提交代码

This commit is contained in:
hehaibing-1996
2024-05-03 11:04:59 +08:00
parent 97888c6978
commit d283924ae1
48 changed files with 802 additions and 509 deletions

View File

@ -27,7 +27,15 @@ namespace WCS.Model.ApiModel.MatInventoryDetail
public DateTime InstoreTime { get; set; } = DateTime.Now;
public string InstoreUser { get; set; }
public bool IsLocked { get; set; } = false;
public bool IsLocked { get; set; }
public string IsLockedStr
{
get
{
return IsLocked ? "是" : "否";
}
}
public int RowNumber { get; set; }
public bool IsSelected { get; set; }
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WCS.Model.ApiModel.OutStore;
namespace WCS.Model
{
public class GetOutOrderListByStatusRequest : PageQueryRequestBase
{
public List<OutOrderExeStatus> OrderExeStatus { get; set; }
}
}

View File

@ -40,9 +40,17 @@ namespace WCS.Model.ApiModel.OutStore
public string? MatCustomer { get; set; }
#endregion
public bool IsSended { get; set; } = false;
public bool IsSended { get; set; }
public DateTime CreateTime { get; set; }
public string IsSendedStr
{
get
{
return IsSended ? "是" : "否";
}
}
public DateTime CreateTime { get; set; }
public string CreateUser { get; set; }

View File

@ -4,7 +4,7 @@ using System.Text;
namespace WCS.Model.ApiModel.Stocktaking
{
public class ComfirmStocktakingOrderRequest
public class ConfirmStocktakingOrderRequest
{
public int Id { get; set; }
public string StocktakingOrderNumber { get; set; }