19 lines
552 B
C#
19 lines
552 B
C#
namespace Tnb.PerMgr.Entities.Dto
|
|
{
|
|
public class ProcessChildDataInput
|
|
{
|
|
|
|
public string id { get; set; } = string.Empty;
|
|
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; }
|
|
}
|
|
} |