namespace BPA.MES.Base.Application.Entitys { /// /// 名 称 :工艺路线 /// 创 建 人 :yangxiao /// 创建时间 : 2023/7/17 17:01:26 /// 描 述 : /// [SugarTable("craft_Steps")] public class Pztj_CraftStepsEntity : DEntityBase { /// /// 工艺Id /// public string CraftId { get; set; } /// /// 步骤 /// public int Step { get; set; } /// /// 功能描述 /// [SugarColumn(IsNullable = true)] public string Description { get; set; } /// /// 设备产品功能Id /// [SugarColumn(IsNullable = true)] public string DeviceProductFunctionId { get; set; } /// /// 功能参数 /// [SugarColumn(IsNullable = true, ColumnDataType= "longtext")] public string Params { get; set; } } }