base_project_client_info.cs 2.5 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
	/// <summary>
	/// 项目工商信息表
	/// </summary>
	[SugarTable("base_project_client_info")]
    public partial class base_project_client_info
	{
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        [SugarColumn(IsNullable = false)]
        public Guid keys { get; set; }


        /// <summary>
        /// 客户名称
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "客户名称", IsNullable = false)]
        public string clientName { get; set; }

        /// <summary>
        /// 法定代表人
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "法定代表人", IsNullable = true)]
        public string legalRepresentative { get; set; }

        /// <summary>
        /// 统一社会信用代码
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "统一社会信用代码", IsNullable = true)]
        public string unifiedSocialCreditCode { get; set; }

        /// <summary>
        /// 工商注册号
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "工商注册号", IsNullable = true)]
        public string businessRegistrationCode { get; set; }

        /// <summary>
        /// 电话
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "电话", IsNullable = true)]
        public string telephone { get; set; }

        /// <summary>
        /// 邮箱
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "邮箱", IsNullable = true)]
        public string email { get; set; }

        /// <summary>
        /// 注册地址
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "注册地址", IsNullable = true)]
        public string registeredAddress { get; set; }

        /// <summary>
        /// 成立日期
        /// </summary>
        [SugarColumn(ColumnDescription = "成立日期", IsNullable = true)]
        public DateTime setupDate { get; set; }

        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "备注", IsNullable = true)]
        public string remark { get; set; }

        [SugarColumn(Length = 50, IsNullable = true)]
        public string createBy { get; set; }

        [SugarColumn(IsNullable = true)]
        public DateTime createTime { get; set; }

    }
}