base_project_client_info.cs
2.5 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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; }
}
}