WorkpieceProcessingRecord.cs
893 Bytes
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace DataAcquisition.Models
{
[Comment("工件加工记录")]
public class WorkpieceProcessingRecord
{
[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; }
}
}