using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.Domain { /// /// 模具异常记录 /// [Comment("模具异常记录")] public class sim_andon { /// /// 主键 /// [Comment("主键")] [Key] public long id { get; set; } /// /// 模具类型编码 /// [Comment("模具类型编码")] public string Mold { get; set; } /// /// 模具维修数量 /// [Comment("模具维修数量")] public int? ToolRepairQuantity { get; set; } /// /// 预计释放时间 /// [Comment("预计释放时间")] public DateTime? EstimatedMaintenanceReleaseTime1 { get; set; } /// /// 恢复时间 /// [Comment("恢复时间")] public DateTime? RestorationTime { get; set; } } }