base_project.cs
3.31 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("base_project")]
public partial class base_project
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
[SugarColumn(IsNullable = false)]
public Guid keys { get; set; }
/// <summary>
/// 项目名称
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "项目名称", IsNullable = false)]
public string projectName { get; set; }
/// <summary>
/// 经度
/// </summary>
[SugarColumn(ColumnDescription = "经度", IsNullable = false)]
public decimal longitude { get; set; }
/// <summary>
/// 纬度
/// </summary>
[SugarColumn(ColumnDescription = "纬度", IsNullable = false)]
public decimal latitude { get; set; }
/// <summary>
/// 项目地址 根据经度维护自动生成地址,也可以手动输入
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "项目地址 根据经度维护自动生成地址,也可以手动输入", IsNullable = true)]
public string projectAddress { get; set; }
/// <summary>
/// 项目经理
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "项目经理", IsNullable = true)]
public string projectManager { get; set; }
/// <summary>
/// 电话
/// </summary>
[SugarColumn(Length = 20, ColumnDescription = "电话", IsNullable = true)]
public string telephone { get; set; }
/// <summary>
/// 图片
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "图片", IsNullable = true)]
public string picture { get; set; }
/// <summary>
/// 项目状态,记录项目的当前状态,如进行中、已完成、已取消等
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "项目状态,记录项目的当前状态,如进行中、已完成、已取消等", IsNullable = true)]
public string projectStatus { get; set; }
/// <summary>
/// 项目的开始日期
/// </summary>
[SugarColumn(ColumnDescription = "项目的开始日期", IsNullable = true)]
public DateTime projectStartTime { get; set; }
/// <summary>
/// 项目的结束日期
/// </summary>
[SugarColumn(ColumnDescription = "项目的结束日期", IsNullable = true)]
public DateTime projectEndTime { get; set; }
/// <summary>
/// 项目描述:对项目的详细描述或摘要
/// </summary>
[SugarColumn(Length = 500, ColumnDescription = "项目描述:对项目的详细描述或摘要", IsNullable = true)]
public string projectDescribe { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string createBy { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime createTime { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime updateTime { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string updateBy { get; set; }
}
}