123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WCS.Entity
- {
- public class WCS_PATH : OBJ
- {
- [Display(Name = "起点")]
- [Required]
- public WCS_DEVICE START { get; set; }
- [Display(Name = "终点")]
- [Required]
- public WCS_DEVICE END { get; set; }
- [Display(Name = "路径")]
- [Required]
- public string PATH { get; set; }
- }
- }
|