Files
tnb.server/PerMgr/Tnb.PerMgr.Entities/Dto/ProcessChildDataInput.cs
2023-06-06 17:14:58 +08:00

13 lines
322 B
C#

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