| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- 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>
- public class RoutingOpDetail
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 物料编码
- /// </summary>
- [Comment("物料编码")]
- public string RoutingCode { get; set; }
- /// <summary>
- /// 描述
- /// </summary>
- [Comment("描述")]
- public string Descr { get; set; }
- /// <summary>
- /// 用于判断是组装热风包装
- /// </summary>
- [Comment("用于判断是组装热风包装")]
- public string? Ufld1 { get; set; }
- /// <summary>
- /// 关键工序
- /// </summary>
- [Comment("关键工序")]
- public bool MilestoneOp { get; set; }
- /// <summary>
- /// 工序
- /// </summary>
- [Comment("工序")]
- public int Op { get; set; }
- /// <summary>
- /// 父级工序
- /// </summary>
- [Comment("父级工序")]
- public int ParentOp { get; set; }
- /// <summary>
- /// 运行时间(标准节拍)
- /// </summary>
- [Comment("运行时间")]
- public decimal RunTime { get; set; }
- /// <summary>
- /// 平行加工件数,下序开工前置数量
- /// </summary>
- [Comment("平行加工件数")]
- public int? OverlapUnits { get; set; }
- /// <summary>
- /// 备注索引
- /// </summary>
- [Comment("备注索引")]
- public int CommentIndex { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- /// <summary>
- /// 报工批量
- /// </summary>
- [Comment("报工批量")]
- public decimal? PackingQty { get; set; }
- /// <summary>
- /// SAP工序
- /// </summary>
- [Comment("SAP工序")]
- public string StdOp { get; set; }
- }
- }
|