using SqlSugar; namespace ProductionSystem_Model.DbModel.Para { /// /// 参数字段配置表 /// [SugarTable("t_paracolumn_config")] public class T_ParaColumnConfig : 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 = "para_name")] public string ParaName { get; set; } /// /// 目标值PLC地址 /// [SugarColumn(ColumnName = "target_point_address")] public string TargetPointAddress { get; set; } /// /// 目标值只读 /// true:只读 false:不只读 /// [SugarColumn(ColumnName = "target_readonly")] public bool TargetReadonly { get; set; } /// /// 上限值PLC地址 /// [SugarColumn(ColumnName = "max_point_address")] public string MaxPointAddress { get; set; } /// /// 上限值只读 /// true:只读 false:不只读 /// [SugarColumn(ColumnName = "max_readonly")] public bool MaxReadonly { get; set; } /// /// 下限值PLC地址 /// [SugarColumn(ColumnName = "min_point_address")] public string MinPointAddress { get; set; } /// /// 下限值只读 /// true:只读 false:不只读 /// [SugarColumn(ColumnName = "min_readonly")] public bool MinReadonly { get; set; } /// /// 是否必须 /// 当为true时参数项后不显示复选框 /// [SugarColumn(ColumnName = "ismust")] public bool IsMust { get; set; } /// /// 是否在主界面显示 /// [SugarColumn(ColumnName = "isshowmain")] public bool IsShowMain { get; set; } /// /// 是否在参数配置页面显示 /// [SugarColumn(ColumnName = "isshowcolconfig")] public bool IsShowColConfig { get; set; } /// /// 采集值PLC地址 /// [SugarColumn(ColumnName = "collect_point_address")] public string CollectPointAddress { get; set; } /// /// 测试结果PLC地址 /// [SugarColumn(ColumnName = "testresult_point_address")] public string TestResultPointAddress { get; set; } /// /// 是否使用PLC地址 /// [SugarColumn(ColumnName = "ismust_point_address")] public string IsMustPointAddress { get; set; } /// /// 排序索引 /// [SugarColumn(ColumnName = "sortindex")] public int SortIndex { get; set; } } }