SpareParts.cs
1.49 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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace HHECS.Model.Entities
{
[Table("spareparts")]
public class SpareParts : BaseEntityCU<int>
{
/// <summary>
/// 工厂名称
/// </summary>
[Column(Order = 2)]
public string FactoryName { get; set; }
/// <summary>
/// 系统图号
/// </summary>
[Column(Order = 3)]
public string SystemNumber { get; set; }
/// <summary>
/// 系统名称
/// </summary>
[Column(Order = 4)]
public string SystemName { get; set; }
/// <summary>
/// 系统key
/// </summary>
[Column(Order = 5)]
public string Keys { get; set; }
///<summary>
///投产套数
///</summary>
public int? ProductionNumber { get; set; }
///<summary>
///备用字段1
///</summary>
public string Column1 { get; set; }
///<summary>
///备用字段2
///</summary>
public string Column2 { get; set; }
///<summary>
///备用字段3
///</summary>
public string Column3 { get; set; }
///<summary>
///备用字段4
///</summary>
public string Column4 { get; set; }
/// <summary>
/// 备品备件明细
/// </summary>
public List<SparePartsDetail> SparePartsDetails { get; set; }
}
}