Blame view

sys/Hh.Mes.POJO/WebEntity/configure/base_project_client_info.cs 2.5 KB
1
2
3
4
5
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
6
7
8
9
10
11
	/// <summary>
	/// 项目工商信息表
	/// </summary>
	[SugarTable("base_project_client_info")]
    public partial class base_project_client_info
	{
12
13
14
15
16
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }
17
18
19
        [SugarColumn(IsNullable = false)]
        public Guid keys { get; set; }
20
21
22
23
24
25
26
        /// <summary>
        /// 客户名称
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "客户名称", IsNullable = false)]
        public string clientName { get; set; }
27
28
29
30
31
32
        /// <summary>
        /// 法定代表人
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "法定代表人", IsNullable = true)]
        public string legalRepresentative { get; set; }
33
34
35
36
37
38
        /// <summary>
        /// 统一社会信用代码
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "统一社会信用代码", IsNullable = true)]
        public string unifiedSocialCreditCode { get; set; }
39
40
41
42
43
44
        /// <summary>
        /// 工商注册号
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "工商注册号", IsNullable = true)]
        public string businessRegistrationCode { get; set; }
45
46
47
48
49
50
        /// <summary>
        /// 电话
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "电话", IsNullable = true)]
        public string telephone { get; set; }
51
52
53
54
55
56
        /// <summary>
        /// 邮箱
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "邮箱", IsNullable = true)]
        public string email { get; set; }
57
58
59
60
61
62
        /// <summary>
        /// 注册地址
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "注册地址", IsNullable = true)]
        public string registeredAddress { get; set; }
63
64
65
66
67
68
        /// <summary>
        /// 成立日期
        /// </summary>
        [SugarColumn(ColumnDescription = "成立日期", IsNullable = true)]
        public DateTime setupDate { get; set; }
69
70
71
72
73
74
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "备注", IsNullable = true)]
        public string remark { get; set; }
75
76
77
        [SugarColumn(Length = 50, IsNullable = true)]
        public string createBy { get; set; }
78
79
80
        [SugarColumn(IsNullable = true)]
        public DateTime createTime { get; set; }
81
82

    }
83
}