- namespace SHJX.Service.Model.CRUDModules
- {
- [Table("route")]
- public class Route
- {
- [Key]
- public int SerialKey { get; set; }
- public string TaskType { get; set; }
- public int RouteID { get; set; }
- public string RouteType { get; set; }
- public string Description { get; set; }
- }
- }
|