ChangeProductionOrderStatusDto.cs 447 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Abp.Domain.Entities;
  7. namespace ShwasherSys.ProductionOrderInfo.Dto
  8. {
  9. public class ChangeProductionOrderStatusDto:Entity<int>
  10. {
  11. public int ProductionOrderStatus { get; set; }
  12. }
  13. public class ChangeSemiOutStoreApplyStatusDto : Entity<int>
  14. {
  15. public int ApplyStatus { get; set; }
  16. }
  17. }