BaseProject.cs
2.38 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
using FreeSql.DataAnnotations;
using System.ComponentModel.DataAnnotations;
namespace HHECS.DAQShared.Models
{
[Table(Name = "base_project", DisableSyncStructure = true)]
public class BaseProject : BaseEntity<int>
{
[Key]
public Guid Keys { get; set; }
/// <summary>
/// 项目编号
/// </summary>
public string ProjectCode { get; set; } = null!;
/// <summary>
/// 项目名称
/// </summary>
public string ProjectName { get; set; } = null!;
/// <summary>
/// 项目类别 读取字典
/// </summary>
public string ProjectType { get; set; } = null!;
/// <summary>
/// 经度
/// </summary>
public decimal Longitude { get; set; }
/// <summary>
/// 纬度
/// </summary>
public decimal Latitude { get; set; }
/// <summary>
/// 项目地址
/// </summary>
public string ProjectAddress { get; set; } = null!;
/// <summary>
/// 项目经理
/// </summary>
public string ProjectManager { get; set; } = null!;
/// <summary>
/// 电话
/// </summary>
public string Telephone { get; set; } = null!;
/// <summary>
/// 图片
/// </summary>
public string Picture { get; set; } = null!;
/// <summary>
/// 项目状态
/// </summary>
public string ProjectStatus { get; set; } = null!;
/// <summary>
/// 项目开始时间
/// </summary>
public DateTime? ProjectStartTime { get; set; }
/// <summary>
/// 项目结束时间
/// </summary>
public DateTime? ProjectEndTime { get; set; }
/// <summary>
/// 项目描述
/// </summary>
public string ProjectDescribe { get; set; } = null!;
/// <summary>
/// 项目工商信息Keys
/// </summary>
public Guid? ProjectClientInfoKeys { get; set; }
/// <summary>
/// 项目工商信息名称
/// </summary>
public string ProjectClientName { get; set; } = null!;
public DateTime? CreateTime { get; set; }
public string CreateBy { get; set; } = null!;
public DateTime? UpdateTime { get; set; }
public string UpdateBy { get; set; } = null!;
}
}