| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- using Business.Model;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Bussiness.Model.Production
- {
- /// <summary>
- /// 工单工艺流程表
- /// </summary>
- [Comment("工单工艺流程表")]
- public class WorkOrdRouting : BaseEntity
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- public int? RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string? Domain { get; set; }
- /// <summary>
- /// 描述
- /// </summary>
- [Comment("描述")]
- public string? Descr { get; set; }
- /// <summary>
- /// 到期日期
- /// </summary>
- [Comment("到期日期")]
- public DateTime? DueDate { get; set; }
- /// <summary>
- /// 关键工序(需要报工的工序)
- /// </summary>
- [Comment("关键工序")]
- public int? MilestoneOp { get; set; }
- /// <summary>
- /// 工单
- /// </summary>
- [Comment("工单")]
- public string? WorkOrd { get; set; }
- /// <summary>
- /// 工序
- /// </summary>
- [Comment("工序")]
- public int? OP { get; set; }
- /// <summary>
- /// 父级工序
- /// </summary>
- [Comment("父级工序")]
- public int? ParentOp { get; set; }
- /// <summary>
- /// 物料编号
- /// </summary>
- [Comment("物料编号")]
- public string? ItemNum { get; set; }
- /// <summary>
- /// 订单数量
- /// </summary>
- [Comment("订单数量")]
- public decimal? QtyOrded { get; set; }
- /// <summary>
- /// 平行加工件数,下序开工前置数量
- /// </summary>
- [Comment("平行加工件数")]
- public int? OverlapUnits { get; set; }
- /// <summary>
- /// 状态:C为不可用状态
- /// </summary>
- [Comment("状态")]
- public string? Status { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public int? IsActive { get; set; }
- }
- }
|