using CMS.Plugin.PipeLineLems.Domain.Shared.Enums; using System; using Volo.Abp.Application.Dtos; namespace CMS.Plugin.PipeLineLems.Application.Contracts.Dtos.CallMaterialOrderRecord; /// /// 叫料记录表创建或更新基类 /// public abstract class CallMaterialOrderRecordCreateOrUpdateDtoBase : ExtensibleEntityDto { /// /// 原料标识 /// public string DataIdentifier { get; set; } /// /// 原料型号 /// public string? MaterialMode { get; set; } /// /// 原料批次 /// public string? MaterialBatch { get; set; } /// /// 叫料状态 /// public CallMaterialStatusEnum CallMaterialStatus { get; set; } /// /// 叫料数量 /// public int Quantity { get; set; } /// /// WMS返回结果 /// public string? WmsRetResult { get; set; } /// /// WMS任务号 /// public string? WmsTaskNo { get; set; } /// /// 创建人ID /// public string? CreatorId { get; set; } /// /// 修改人ID /// public string? LastModifierId { get; set; } /// /// 删除时间 /// public DateTime? DeletionTime { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 备注 /// public string? Remark { get; set; } /// /// 扩展字段1 /// public string? ExtraField1 { get; set; } /// /// 扩展字段2 /// public string? ExtraField2 { get; set; } /// /// 扩展字段3 /// public string? ExtraField3 { get; set; } /// /// Initializes a new instance of the class. /// public CallMaterialOrderRecordCreateOrUpdateDtoBase() : base(false) { } }