| 1234567891011121314151617181920212223242526272829303132 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S8;
- [SugarTable("ado_s8_scene_config", "S8 场景配置")]
- public class AdoS8SceneConfig
- {
- [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "tenant_id", ColumnDataType = "bigint")]
- public long TenantId { get; set; }
- [SugarColumn(ColumnName = "factory_id", ColumnDataType = "bigint")]
- public long FactoryId { get; set; }
- [SugarColumn(ColumnName = "scene_code", Length = 64)]
- public string SceneCode { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "scene_name", Length = 256)]
- public string SceneName { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "enabled", ColumnDataType = "boolean")]
- public bool Enabled { get; set; } = true;
- [SugarColumn(ColumnName = "sort_no")]
- public int SortNo { get; set; }
- [SugarColumn(ColumnName = "created_at")]
- public DateTime CreatedAt { get; set; } = DateTime.Now;
- [SugarColumn(ColumnName = "updated_at", IsNullable = true)]
- public DateTime? UpdatedAt { get; set; }
- }
|