BusSnProjectInfoWmsHead.cs
1.21 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
using FreeSql.DataAnnotations;
namespace HHECS.DAQShared.Models
{
[Table(Name = "bus_sn_project_info_wms_head")]
public class BusSnProjectInfoWmsHead
{
[Column(IsPrimary = true, IsIdentity = true, Position = 1)]
public int Id { get; set; }
public Guid Keys { get; set; }
/// <summary>
/// 系列号
/// </summary>
public string SN { get; set; } = null!;
/// <summary>
/// 项目号或者工单号
/// </summary>
public string CorrelatedCode { get; set; } = null!;
/// <summary>
/// 设备类型
/// </summary>
public string EquipmentType { get; set; } = null!;
/// <summary>
/// 申请人账号
/// </summary>
public string UserBy { get; set; } = null!;
/// <summary>
/// 主工单号,可能是子工单号 (oa申请sn填写)
/// </summary>
public string OrdeCode { get; set; } = null!;
/// <summary>
/// 项目名称
/// </summary>
public string OrdeName { get; set; } = null!;
public DateTime? CreateTime { get; set; }
public string CreateBy { get; set; } = null!;
}
}