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
911 B
C#

namespace Admin.NET.Plugin.HwPortal;
[SugarTable("hw_product_case_info")]
public class HwProductCaseInfo : HwPortalBaseEntity
{
[SugarColumn(ColumnName = "case_info_id", IsPrimaryKey = true, IsIdentity = true)]
public long? CaseInfoId { get; set; }
[SugarColumn(ColumnName = "case_info_title")]
public string CaseInfoTitle { get; set; }
[SugarColumn(ColumnName = "config_type_id")]
public string ConfigTypeId { get; set; }
[SugarColumn(ColumnName = "typical_flag")]
public string TypicalFlag { get; set; }
[SugarColumn(ColumnName = "case_info_desc")]
public string CaseInfoDesc { get; set; }
[SugarColumn(ColumnName = "case_info_pic")]
public string CaseInfoPic { get; set; }
[SugarColumn(ColumnName = "case_info_html")]
public string CaseInfoHtml { get; set; }
[SugarColumn(IsIgnore = true)]
public string HomeTypicalFlag { get; set; }
}