namespace Admin.NET.Plugin.HwPortal; [SugarTable("hw_web1")] public class HwWeb1 : HwPortalBaseEntity { [SugarColumn(ColumnName = "web_id", IsPrimaryKey = true, IsIdentity = true)] public long? WebId { get; set; } [SugarColumn(ColumnName = "web_json")] public string WebJson { get; set; } [SugarColumn(ColumnName = "web_json_string")] public string WebJsonString { get; set; } [SugarColumn(ColumnName = "web_code")] public long? WebCode { get; set; } [SugarColumn(ColumnName = "device_id")] public long? DeviceId { get; set; } [SugarColumn(ColumnName = "typeId")] public long? TypeId { get; set; } [SugarColumn(ColumnName = "is_delete")] public string IsDelete { get; set; } [SugarColumn(ColumnName = "web_json_english")] public string WebJsonEnglish { get; set; } }