WCS_PATH.cs 530 B

123456789101112131415161718192021222324
  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 WCS.Entity
  8. {
  9. public class WCS_PATH : OBJ
  10. {
  11. [Display(Name = "起点")]
  12. [Required]
  13. public WCS_DEVICE START { get; set; }
  14. [Display(Name = "终点")]
  15. [Required]
  16. public WCS_DEVICE END { get; set; }
  17. [Display(Name = "路径")]
  18. [Required]
  19. public string PATH { get; set; }
  20. }
  21. }