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 MoldToolList { /// /// 主键 /// [Comment("主键")] [Key] public int id { get; set; } /// /// 模具名称 /// [Comment("模具名称")] public string MoldName { get; set; } /// /// 模具类型编码 /// [Comment("模具类型编码")] public string MoldTypeCode { get; set; } /// /// 模具总数 /// [Comment("模具总数")] public int MoldCount { get; set; } /// /// 模具维修数量 /// [Comment("模具维修数量")] public int? ActiveMaintenanceMoldCount { get; set; } /// /// 预计释放时间 /// [Comment("预计释放时间")] public DateTime? MoldMaintenanceReleaseTime { get; set; } } }