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