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