工艺标准接口修改

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

@@ -18,6 +18,11 @@ public partial class PerProcessStandardsD : BaseEntity<string>
/// 工艺标准主表id
/// </summary>
public string process_standards_id { get; set; } = string.Empty;
/// <summary>
/// 工艺参数类型id
/// </summary>
public string process_param_type_id { get; set; } = string.Empty;
/// <summary>
/// 工艺参数id
@@ -38,5 +43,10 @@ public partial class PerProcessStandardsD : BaseEntity<string>
/// 下限
/// </summary>
public decimal? lower_value { get; set; }
/// <summary>
/// 数据采集id
/// </summary>
public string? daq_id { get; set; }
}