EquipmentMaintainOperation.cs
1.08 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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace HHECS.Model.Entities
{
/// <summary>
/// 维护操作表
/// </summary>
[Table("equipmentmaintainoperation")]
public class EquipmentMaintainOperation : BaseEntityCU<int>
{
/// <summary>
/// 操作步骤名称
/// </summary>
[Column(Order = 2)]
[MaxLength(100)]
public string Name { get; set; }
/// <summary>
/// 目标部件,比如行走变频器
/// </summary>
[Column(Order = 3)]
[MaxLength(100)]
public string Targetcomponent { get; set; }
/// <summary>
/// 需要使用的工具
/// </summary>
[Column(Order = 4)]
[MaxLength(250)]
public string Tools { get; set; }
/// <summary>
/// 操作描述
/// </summary>
[Column(Order = 5)]
[MaxLength(1000)]
public string Operation { get; set; }
}
}