工艺标准接口修改

This commit is contained in:
2023-06-08 17:36:22 +08:00
parent 4b818980de
commit c619620da6
9 changed files with 327 additions and 8 deletions

View File

@@ -3,11 +3,17 @@ namespace Tnb.PerMgr.Entities.Dto
public class ProcessChildDataInput
{
public string id { get; set; }
public string process_standards_id { get; set; }
/// <summary>
/// 工艺参数id
/// </summary>
public string process_param_id { get; set; }
/// <summary>
/// 工艺参数类型id
/// </summary>
public string process_param_type_id { get; set; }
public decimal value { get; set; }
public string daq_id { get; set; }
}
}