PmsTaskInfoDto.cs 916 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ProjectManagementSystem.Common.Models
  9. {
  10. public class PmsTaskInfoDto
  11. {
  12. [MaxLength(50)]
  13. public string TaskID { get; set; }
  14. [MaxLength(50)]
  15. public string WareHouseCode { get; set; }
  16. [MaxLength(50)]
  17. public string LocationCode { get; set; }
  18. [MaxLength(50)]
  19. public string MaterialId { get; set; }
  20. [MaxLength(50)]
  21. public string TargetWareHouseCode { get; set; }
  22. [MaxLength(50)]
  23. public string TargetLocationCode { get; set; }
  24. public int Carrier { get; set; }
  25. public string CarrierType { get; set; }
  26. public int Priority { get; set; }
  27. public string ParentTaskId { get; set; }
  28. }
  29. }