| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- 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; }
- /// <summary>
- /// 设备编码
- /// </summary>
- [Comment("设备编码")]
- public string InternalEquipmentCode { get; set; }
- /// <summary>
- /// 模具编码
- /// </summary>
- [Comment("模具编码")]
- public string MoldTypeCode { get; set; }
- /// <summary>
- /// 工作中心编码
- /// </summary>
- [Comment("工作中心编码")]
- public string Site { get; set; }
- /// <summary>
- /// 员工技能编码
- /// </summary>
- [Comment("员工技能编码")]
- public string SkillNo { get; set; }
- /// <summary>
- /// 标准人数
- /// </summary>
- [Comment("标准人数")]
- public decimal StandardStaffCount { get; set; }
- /// <summary>
- /// 工序类型:M机械,P人工
- /// </summary>
- [Comment("工序类型")]
- public string OpType { get; set; }
- /// <summary>
- /// Bom版本
- /// </summary>
- [Comment("Bom版本")]
- public string Bom { get; set; }
- }
- }
|