Blame view

sys/WebRepository/Domain/configure/Company.cs 1.21 KB
赖素文 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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; }
    }
}