namespace Admin.NET.Plugin.HwPortal; [SugarTable("hw_product_info_detail")] public class HwProductInfoDetail : HwPortalBaseEntity { [SugarColumn(ColumnName = "product_info_detail_id", IsPrimaryKey = true, IsIdentity = true)] public long? ProductInfoDetailId { get; set; } [SugarColumn(ColumnName = "parent_id")] public long? ParentId { get; set; } [SugarColumn(ColumnName = "product_info_id")] public long? ProductInfoId { get; set; } [SugarColumn(ColumnName = "config_modal")] public string ConfigModal { get; set; } [SugarColumn(ColumnName = "config_model")] public string ConfigModel { get; set; } [SugarColumn(ColumnName = "product_info_detail_title")] public string ProductInfoDetailTitle { get; set; } [SugarColumn(ColumnName = "product_info_detail_desc")] public string ProductInfoDetailDesc { get; set; } [SugarColumn(ColumnName = "product_info_detail_order")] public long? ProductInfoDetailOrder { get; set; } [SugarColumn(ColumnName = "product_info_detail_pic")] public string ProductInfoDetailPic { get; set; } [SugarColumn(ColumnName = "ancestors")] public string Ancestors { get; set; } [SugarColumn(IsIgnore = true)] public List Children { get; set; } = new(); [SugarColumn(IsIgnore = true)] public List HwProductInfoDetailList { get; set; } = new(); }