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.
42 lines
1.4 KiB
C#
42 lines
1.4 KiB
C#
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<HwProductInfoDetail> Children { get; set; } = new();
|
|
|
|
[SugarColumn(IsIgnore = true)]
|
|
public List<HwProductInfoDetail> HwProductInfoDetailList { get; set; } = new();
|
|
}
|