using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProductionSystem_Model.DbModel { /// /// 产品数据 /// [SugarTable("t_data_product")] public class T_Data_Product { /// /// 参数编码 /// [SugarColumn(ColumnName = "para_code")] public string ParaCode { get; set; } /// /// 目标值 /// [SugarColumn(ColumnName = "target_val")] public string TargetVal { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "createdtime")] public string CreatedTime { get; set; } /// /// 创建者 /// [SugarColumn(ColumnName = "createdby")] public string CreateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "updatedtime")] public string UpdatedTime { get; set; } /// /// 更新者 /// [SugarColumn(ColumnName = "updatedby")] public string UpdatedBy { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 是否产品 /// [SugarColumn(ColumnName = "is_product")] public string IsProduct { get; set; } /// /// 参数类别 /// [SugarColumn(ColumnName = "para_category")] public string ParaCategory { get; set; } } }