齐套出库 一般出库 物料出库添加状态

This commit is contained in:
2023-11-08 14:06:40 +08:00
parent 30b40fb28e
commit bd739b3060
6 changed files with 159 additions and 25 deletions

View File

@@ -0,0 +1,20 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class PrdKittingOutChangeStatusInput
{
/// <summary>
/// 来源单号
/// </summary>
public string code { get; set; }
/// <summary>
/// 0 齐套出库 1 一般出库 2 物料出库
/// </summary>
public string type { get; set; }
/// <summary>
/// 状态
/// </summary>
public string status { get; set; }
}
}