using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.PerMgr.Entities;
///
/// 工艺标准子表
///
[SugarTable("per_process_standards_d")]
public partial class PerProcessStandardsD : BaseEntity
{
public PerProcessStandardsD()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 工艺标准主表id
///
public string process_standards_id { get; set; } = string.Empty;
///
/// 工艺参数类型id
///
public string process_param_type_id { get; set; } = string.Empty;
///
/// 工艺参数id
///
public string process_param_id { get; set; } = string.Empty;
///
/// 设定值
///
public decimal value { get; set; }
///
/// 上限
///
public decimal? upper_value { get; set; }
///
/// 下限
///
public decimal? lower_value { get; set; }
///
/// 数据采集id
///
public string? daq_id { get; set; }
public string name { get; set; }
}