| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- namespace Admin.NET.Plugin.AiDOP.Entity;
- /// <summary>
- /// 智慧运营看板订单查询表。
- /// </summary>
- [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; }
- }
- /// <summary>
- /// 智慧运营看板计划查询表。
- /// </summary>
- [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; }
- }
- /// <summary>
- /// 智慧运营看板工单查询表。
- /// </summary>
- [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; }
- }
|