using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Security.Principal; using System.Text; using System.Threading.Tasks; namespace ProductionSystem_Model.DbModel { /// /// 产品步骤 /// public class T_Product_Step { [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string Id { get; set; } [SugarColumn(ColumnName = "step_name")] public string StepName { get; set; } [SugarColumn(ColumnName = "equipment_name")] public string EquipmentName { get; set; } [SugarColumn(ColumnName = "write_value")] public string WriteValue { get; set; } [SugarColumn(ColumnName = "return_value")] public string ReturnValue { get; set; } [SugarColumn(ColumnName = "create_time")] public DateTime CreateTime { get; set; } [SugarColumn(ColumnName = "product_type")] public string ProductType { get; set; } [SugarColumn(ColumnName = "product_barcode")] public string ProductBarcode { get; set; } } }