using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Abp.Domain.Entities; namespace ShwasherSys.ProductionOrderInfo.Dto { public class ChangeProductionOrderStatusDto:Entity { public int ProductionOrderStatus { get; set; } } public class ChangeSemiOutStoreApplyStatusDto : Entity { public int ApplyStatus { get; set; } } }