| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WCS.Entity
- {
- public class WCS_ROUTE:OBJ
- {
- [Required]
- public WCS_DEVICE DEVICE { get; set; }
- [Required]
- public WCS_DEVICE NEXT { get; set; }
- }
-
- }
|