Route.cs 341 B

12345678910111213
  1. namespace SHJX.Service.Model.CRUDModules
  2. {
  3. [Table("route")]
  4. public class Route
  5. {
  6. [Key]
  7. public int SerialKey { get; set; }
  8. public string TaskType { get; set; }
  9. public int RouteID { get; set; }
  10. public string RouteType { get; set; }
  11. public string Description { get; set; }
  12. }
  13. }