工艺标准接口

This commit is contained in:
2023-06-06 17:14:58 +08:00
parent 1a576bee30
commit 2fc0dfc0bd
6 changed files with 233 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace Tnb.PerMgr.Entities.Dto
{
public class ProcessChildDataInput
{
public string process_standards_id { get; set; }
/// <summary>
/// 工艺参数id
/// </summary>
public string process_param_id { get; set; }
public decimal value { get; set; }
}
}