using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; namespace ShwasherSys.ProductionOrderInfo.Dto { [AutoMapTo(typeof(OrderProduction)),AutoMapFrom(typeof(OrderProduction))] public class OrderProductionDto: EntityDto { public int OrderItemId { get; set; } public string ProductionOrderNo { get; set; } public string Remark { get; set; } public DateTime? TimeCreated { get; set; } public string CreatorUserId { get; set; } } }