using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using System.ComponentModel.DataAnnotations; namespace ShwasherSys.ProductionOrderInfo.Dto { [AutoMapTo(typeof(OrderProduction))] public class OrderProductionUpdateDto: 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; } } }