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