Files
tnb.server/Tnb.BasicData.Entitys/Dto/ParentMaterial/ParentMaterialTreeQueryInput.cs
2023-04-21 09:13:41 +08:00

17 lines
362 B
C#

namespace Tnb.BasicData.Entitys.Dto
{
public class ParentMaterialTreeQueryInput
{
/// <summary>
/// 物料清单id
/// </summary>
public string parentMaterialId { get; set; }
/// <summary>
/// 物料id
/// </summary>
public string materialId { get; set; }
}
}