| | |
| | | using CMS.Plugin.MyExtension.Domain; |
| | | using CMS.Plugin.PipeLineLems.Domain.Shared.Enums; |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | using Volo.Abp.Domain.Entities.Auditing; |
| | |
| | | /// 任务编码 |
| | | /// </summary> |
| | | public string TaskCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 计划状态 |
| | | /// </summary> |
| | | public WorkPlanStatusEnum WorkPlanStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 叫料状态 |
| | | /// </summary> |
| | | public CallMaterialStatusEnum CallMaterialStatus { get; set; } |
| | | |
| | | #region 原料管信息 |
| | | |
| | |
| | | public string Material { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否主支管 |
| | | /// </summary> |
| | | public bool HasMainSignature { get; set; } |
| | | ///// <summary> |
| | | ///// 是否主支管 |
| | | ///// </summary> |
| | | //public bool HasMainSignature { get; set; } |
| | | |
| | | |
| | | |