using SqlSugar;
namespace ProductionSystem_Model.DbModel.Para
{
///
/// 参数配置表
///
[SugarTable("t_para_config")]
public class T_ParaConfig : BaseModel
{
///
/// 产品型号
///
[SugarColumn(ColumnName = "product_type")]
public string ProductType { get; set; }
///
/// 参数类别
///
[SugarColumn(ColumnName = "para_category")]
public string ParaCategory { get; set; }
///
/// 参数编码
///
[SugarColumn(ColumnName = "para_code")]
public string ParaCode { get; set; }
///
/// 目标值
///
[SugarColumn(ColumnName = "target_val")]
public decimal? TargetVal { get; set; }
///
/// 上限值
///
[SugarColumn(ColumnName = "max_val")]
public decimal? MaxVal { get; set; }
///
/// 下限值
///
[SugarColumn(ColumnName = "min_val")]
public decimal? MinVal { get; set; }
///
/// 是否必须
/// 当为true时参数项后不显示复选框
///
[SugarColumn(ColumnName = "ismust")]
public bool IsMust { get; set; }
///
/// 等待时间
///
[SugarColumn(ColumnName = "wait_time")]
public int ? WaitTime { get; set; }
///
/// 测试时间
///
[SugarColumn(ColumnName = "test_time")]
public int? TestTime { get; set; }
}
}