RequestStoreStateChange.cs 574 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ProjectManagementSystem.Common.Models
  8. {
  9. public class RequestStoreStateChange
  10. {
  11. [Required]
  12. [MaxLength(50)]
  13. /// <summary>
  14. /// 库位ID
  15. /// </summary>
  16. public string Station { get; set; }
  17. [Required]
  18. /// <summary>
  19. /// 变更类型,1置空,2置满
  20. /// </summary>
  21. public string Type { get; set; }
  22. }
  23. }