namespace Admin.NET.Plugin.AiDOP.Entity; /// /// 智慧运营看板订单查询表。 /// [IgnoreTable] [SugarTable("ado_order", "智慧运营看板订单查询表")] public class AdoOrder { [SugarColumn(ColumnName = "Id", ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = false, ColumnDataType = "bigint")] public long Id { get; set; } [SugarColumn(ColumnName = "Product", ColumnDescription = "产品", IsNullable = true, Length = 200)] public string? Product { get; set; } [SugarColumn(ColumnName = "OrderNo", ColumnDescription = "订单号", IsNullable = true, Length = 100)] public string? OrderNo { get; set; } } /// /// 智慧运营看板计划查询表。 /// [IgnoreTable] [SugarTable("ado_plan", "智慧运营看板计划查询表")] public class AdoPlan { [SugarColumn(ColumnName = "Id", ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = false, ColumnDataType = "bigint")] public long Id { get; set; } [SugarColumn(ColumnName = "ProductName", ColumnDescription = "产品名称", IsNullable = true, Length = 200)] public string? ProductName { get; set; } } /// /// 智慧运营看板工单查询表。 /// [IgnoreTable] [SugarTable("ado_work_order", "智慧运营看板工单查询表")] public class AdoWorkOrder { [SugarColumn(ColumnName = "Id", ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = false, ColumnDataType = "bigint")] public long Id { get; set; } [SugarColumn(ColumnName = "Product", ColumnDescription = "产品", IsNullable = true, Length = 200)] public string? Product { get; set; } [SugarColumn(ColumnName = "WorkCenter", ColumnDescription = "工作中心", IsNullable = true, Length = 100)] public string? WorkCenter { get; set; } }