using iWare.Wms.Core.Enum; using iWare.Wms.Core.Util.LowCode.Dto; using Microsoft.EntityFrameworkCore; using System; namespace iWare.Wms.Application { /// /// 零件信息输出参数 /// public class WmsPartOutput { /// /// 零件编号 /// public string PartCode { get; set; } /// /// 零件名称 /// public string PartName { get; set; } /// /// 端拾器编码 /// public string MaterialCode { get; set; } /// /// 长度 /// public decimal Length { get; set; } /// /// 宽度 /// public decimal Width { get; set; } /// /// 高度 /// public decimal Height { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 状态 /// public iWare.Wms.Core.CommonStatus Status { get; set; } /// /// Id主键 /// public long Id { get; set; } /// /// 生产线 /// public LineTypeEnum? LineType { get; set; } /// /// 车型 /// public string CarType { get; set; } } }