using System; using Abp.AutoMapper; using Abp.Domain.Entities; namespace ShwasherSys.ProductionOrderInfo.Dto { [AutoMapTo(typeof(ProductionLog)),AutoMapFrom(typeof(ProductionLog))] public class ProductionLogDto:Entity { public string ProductionNo { get; set; } /// /// 流转单号 /// public string ProductOrderNo { get; set; } /// /// 员工Id /// public int EmployeeId { get; set; } /// /// 车号 /// public string CarNo { get; set; } /// /// 产品数量(Kg) /// [DecimalPrecision] public decimal QuantityWeight { get; set; } /// /// 千件重 /// [DecimalPrecision] public decimal KgWeight { get; set; } /// /// 产品数量(千件) /// [DecimalPrecision] public decimal QuantityPcs { get; set; } public DateTime CreationTime{ get; set; } public string EmployeeNo { get; set; } public string EmployeeName { get; set; } } }