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 EquipmentList { /// /// 主键 /// [Comment("主键")] [Key] public long id { get; set; } /// /// 设备名称 /// [Comment("设备名称")] public string MachineName { get; set; } /// /// 厂内设备类型编码 /// [Comment("厂内设备类型编码")] public string InternalEquipmentCode { get; set; } /// /// 资产编码 /// [Comment("资产编码")] public string EquipmentAssetID { get; set; } /// /// 设备是否可用 1-可用 0-不可用 /// [Comment("设备是否可用")] public int IsSchedulable { get; set; } /// /// 预计释放时间 /// [Comment("预计释放时间")] public DateTime? EstimatedMaintenanceReleaseTime { get; set; } /// /// 标准维修天数 /// [Comment("标准维修天数")] public decimal? StandardRepairDays { get; set; } } }