using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; using Volo.Abp.Domain.Entities.Auditing; namespace CMS.Plugin.PipeLineLems.Domain.WorkPlan { /// /// 作业计划表 /// public class WorkPlan : FullAuditedAggregateRoot { /// /// 任务编码 /// public string TaskCode { get; set; } /// /// 原料编号 /// public string OrgMaterialCode { get; set; } /// /// 工厂代码 /// public string FactoryCode { get; set; } /// /// 产品代码 /// public string ProductCode { get; set; } /// /// 工位代码 /// public string WorkstationCode { get; set; } /// /// 设备代码 /// public string EquipmentCode { get; set; } /// /// 工件名称 /// public string WorkpieceName { get; set; } /// /// 工序名称 /// public string ProcessName { get; set; } /// /// 管件编码 /// public string PipeFittingCode { get; set; } /// /// 顺序号 /// public string PreSerialNumber { get; set; } /// /// 原料标识 /// public string DataIdentifier { get; set; } /// /// 管规格码 /// public string PipeSpecCode { get; set; } /// /// 管段名称 /// public string PipeSectionName { get; set; } /// /// 外径 /// public string OuterDiameter { get; set; } /// /// 坡口 /// public string Bevel { get; set; } /// /// 材质 /// public string Material { get; set; } /// /// 长度 /// public string Length { get; set; } /// /// 打孔位 /// public string DrillingPosition { get; set; } /// /// 相贯 /// public string Intersecting { get; set; } /// /// 接口要求 /// public string InterfaceRequirement { get; set; } /// /// 是否有主签 /// public bool HasMainSignature { get; set; } /// /// 包括数量 /// public int Quantity { get; set; } /// /// 打码内容 /// public string MarkingContent { get; set; } /// /// 切割文件 /// public string CuttingFile { get; set; } /// /// 支外径 /// public string BranchOuterDiameter { get; set; } /// /// 支管壁厚 /// public string BranchWallThickness { get; set; } /// /// 支管材质 /// public string BranchMaterial { get; set; } /// /// 支管端口曲率半径 /// public string BranchPortRadius { get; set; } /// /// 支管端口角度 /// public string BranchPortAngle { get; set; } /// /// 支管端口要求 /// public string BranchPortRequirement { get; set; } /// /// 相贯线类型 /// public string IntersectingLineType { get; set; } /// /// 相贯线类别 /// public string IntersectingLineCategory { get; set; } /// /// 成品图幅 /// public string FinishedProductScale { get; set; } /// /// 法兰厚度 /// public string FlangeThickness { get; set; } /// /// 法兰内径 /// public string FlangeInnerDiameter { get; set; } /// /// 焊接热输入 /// public string WeldingHeatInput { get; set; } /// /// 管道允许应力 /// public string PipeAllowableStress { get; set; } /// /// 管径 /// public string PipeDiameter { get; set; } /// /// 管道壁厚 /// public string PipeWallThickness { get; set; } /// /// VR数据 /// public string VRData { get; set; } /// /// 工艺路线编号 /// public string ProcessRouteNumber { get; set; } /// /// 计划开始时间 /// public DateTime? PlannedStartTime { get; set; } /// /// 计划完成时间 /// public DateTime? PlannedEndTime { get; set; } /// /// 时间信息 /// public string TimeInfo { get; set; } /// /// 冗余字段1 - 预留扩展用途 /// public string RedundantField1 { get; set; } /// /// 冗余字段2 - 预留扩展用途 /// public string RedundantField2 { get; set; } /// /// 冗余字段3 - 预留扩展用途 /// public string RedundantField3 { get; set; } /// /// 排序 /// public virtual int Sort { get; set; } /// /// 备注 /// public virtual string Remark { get; set; } /// /// 是否禁用 /// public virtual bool? IsDisabled { get; set; } /// /// Adjusts the sort. /// /// The sort. public void AdjustSort(int sort) { Sort = sort; } } }