工艺标准接口修改

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; }
}
}

View File

@@ -14,5 +14,7 @@ namespace Tnb.PerMgr.Entities.Dto
public decimal? value { get; set; }
public decimal upper_value { get; set; }
public decimal lower_value { get; set; }
public string daq_id { get; set; }
}
}

View File

@@ -0,0 +1,8 @@
namespace Tnb.PerMgr.Entities.Dto
{
public class ProcessParamTypeDaqListOutput
{
public string id { get; set; }
public string label_name { get; set; }
}
}