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