| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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 ProdLineDetail
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 生产线
- /// </summary>
- [Comment("生产线")]
- public string Line { get; set; }
- /// <summary>
- /// 物料编号
- /// </summary>
- [Comment("物料编号")]
- public string Part { get; set; }
- /// <summary>
- /// 单位标准产能=Uph
- /// </summary>
- [Comment("单位标准产能")]
- public decimal Rate { get; set; }
- /// <summary>
- /// 工序
- /// </summary>
- [Comment("工序")]
- public int Op { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- /// <summary>
- /// 当前产线准备时间(小时)
- /// </summary>
- [Comment("当前产线准备时间")]
- public decimal SetupTime { get; set; }
- /// <summary>
- /// 当前产线提前期(小时)
- /// </summary>
- [Comment("当前产线提前期")]
- public decimal OverlapTime { get; set; }
-
- /// <summary>
- /// 优先级
- /// </summary>
- [Comment("优先级")]
- public decimal Sequence { get; set; }
- }
- }
|