增加接口

This commit is contained in:
2023-04-26 17:20:58 +08:00
parent c155218229
commit 6b12b09324
12 changed files with 57 additions and 15 deletions

View File

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