物料清单

This commit is contained in:
2023-04-21 09:13:41 +08:00
parent b8873eac2e
commit 76ca8e4984
11 changed files with 810 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace Tnb.BasicData.Entitys.Dto
{
public class ParentMaterialTreeQueryInput
{
/// <summary>
/// 物料清单id
/// </summary>
public string parentMaterialId { get; set; }
/// <summary>
/// 物料id
/// </summary>
public string materialId { get; set; }
}
}