You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
839 B
C#
30 lines
839 B
C#
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; }
|
|
}
|