You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ProductionSystem/ProductionSystem_Model/DbModel/Para/T_ParaConfig.cs

75 lines
1.8 KiB
C#

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