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.
24 lines
788 B
C#
24 lines
788 B
C#
namespace Admin.NET.Plugin.HwPortal;
|
|
|
|
[SugarTable("hw_about_us_info_detail")]
|
|
public class HwAboutUsInfoDetail : HwPortalBaseEntity
|
|
{
|
|
[SugarColumn(ColumnName = "us_info_detail_id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public long? UsInfoDetailId { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "about_us_info_id")]
|
|
public long? AboutUsInfoId { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "us_info_detail_title")]
|
|
public string UsInfoDetailTitle { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "us_info_detail_desc")]
|
|
public string UsInfoDetailDesc { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "us_info_detail_order")]
|
|
public long? UsInfoDetailOrder { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "us_info_detail_pic")]
|
|
public string UsInfoDetailPic { get; set; }
|
|
}
|