| using SqlSugar; | 
| using WIDESEA_Core.DB.Models; | 
|   | 
| namespace WIDESEA_Model.Models; | 
|   | 
| [SugarTable("Sys_CompanyRegistration", "待注册表")] | 
| public class Sys_CompanyRegistration : BaseEntity | 
| { | 
|     /// <summary> | 
|     /// 主键,自动递增 | 
|     /// </summary> | 
|     [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键,自动递增")] | 
|     public int Id { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 公司名称 | 
|     /// </summary> | 
|     [SugarColumn(ColumnDataType = "nvarchar", Length = 255, IsNullable = false, ColumnDescription = "公司名称")] | 
|     public string CompanyName { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 公司类型 | 
|     /// </summary> | 
|     [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "公司类型")] | 
|     public string CompanyType { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 行业类别 | 
|     /// </summary> | 
|     [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "行业类别")] | 
|     public string Industry { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 联系人姓名 | 
|     /// </summary> | 
|     [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "联系人姓名")] | 
|     public string ContactName { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 联系人电话 | 
|     /// </summary> | 
|     [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "联系人电话")] | 
|     public string ContactPhone { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 联系人电子邮箱 | 
|     /// </summary> | 
|     [SugarColumn(ColumnDataType = "nvarchar", Length = 255, IsNullable = false, ColumnDescription = "联系人电子邮箱")] | 
|     public string ContactEmail { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 同意使用条款和隐私政策 | 
|     /// </summary> | 
|     [SugarColumn(IsNullable = false, ColumnDescription = "同意使用条款和隐私政策")] | 
|     public bool AgreeTerms { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 注册状态 | 
|     /// </summary> | 
|     [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "注册状态")] | 
|     public string RegistrationStatus { get; set; } | 
| } |