using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProductionSystem_Model.DbModel.Test { /// /// 测试步骤配置表 /// [SugarTable("test_step")] public class Test_Step { public Test_Step() { Id = Guid.NewGuid().ToString(); } /// /// 主键 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsNullable = false)] public string Id { get; set; } /// /// 测试名称 /// [SugarColumn(ColumnName = "test_name")] public string TestName { get; set; } /// /// 测试内容 /// [SugarColumn(ColumnName = "test_content")] public string TestContent { get; set; } /// /// 索引 /// [SugarColumn(ColumnName = "index")] public int Index { get; set; } /// /// 是否启用 /// [SugarColumn(ColumnName = "is_enable")] public bool IsEnable { get; set; } /// /// 产品类型 /// [SugarColumn(ColumnName = "product_type")] public string ProductType { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } } }