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.

21 lines
611 B
C#

namespace Admin.NET.Plugin.HwPortal;
[SugarTable("hw_contact_us_info")]
public class HwContactUsInfo : HwPortalBaseEntity
{
[SugarColumn(ColumnName = "contact_us_info_id", IsPrimaryKey = true, IsIdentity = true)]
public long? ContactUsInfoId { get; set; }
[SugarColumn(ColumnName = "user_name")]
public string UserName { get; set; }
[SugarColumn(ColumnName = "user_email")]
public string UserEmail { get; set; }
[SugarColumn(ColumnName = "user_phone")]
public string UserPhone { get; set; }
[SugarColumn(ColumnName = "user_ip")]
public string UserIp { get; set; }
}