WorkpieceProduction.cs
1.05 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
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace DataAcquisition.Models
{
[Comment("生产工件")]
[Table("WorkpieceProduction")]
public class WorkpieceProduction
{
[Key]
[Comment("主键")]
public Guid Id { get; set; }
[Comment("设备编号")]
public string EquipmentCode { get; set; } = null!;
[Comment("设备名称")]
public string EquipmentName { get; set; } = null!;
[Comment("程序号")]
public int ProgramNo { get; set; }
[Comment("工件型号")]
public string WorkpieceCode { get; set; } = null!;
[Comment("是否结束")]
public bool IsEnd { get; set; }
[Comment("创建时间")]
public DateTime CreateTime { get; set; }
[Comment("更新时间")]
public DateTime UpdateTime { get; set; }
public IList<WeldProcessRecord> WeldProcessRecords { get; set; } = new List<WeldProcessRecord>();
}
}