Company.cs 1.21 KB
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;

namespace WebRepository.Domain.configure
{
    /// <summary>
    /// 公司设置表
    /// </summary>
    [Table("base_company")]
    public partial class Company : SysEntity
    {
        public Company()
        {
        }
        /// <summary>
        /// 公司id
        /// </summary>
        [Column("companyId")]
        public int? CompanyId { get; set; }

        /// <summary>
        /// 公司名称
        /// </summary>
        [Column("name")]
        public string Name { get; set; }


        /// <summary>
        /// 地址
        /// </summary>
        [Column("address")]
        public string Address { get; set; }

        /// <summary>
        /// 电话
        /// </summary>
        [Column("telephone")]
        public string Telephone { get; set; }


        /// <summary>
        /// 文件附属id
        /// </summary>
        [Column("fileId")]
        public  int? FileId { get; set; }

        /// <summary>
        /// 是否停用
        /// </summary>
        [Column("isDelete")]
        public int? IsDelete { get; set; }
        public bool Exel { get; set; }
    }
}