| 12345678910111213141516171819 |
- using SHJX.Service.Model.Enums;
- namespace SHJX.Service.Model.CRUDModules
- {
- [Table("routecache")]
- public class RouteCache
- {
- [Key]
- public int SerialKey { get; set; }
- public DateTime CreateTime { get; set; }
- public string Source { get; set; }
- public int TaskKey { get; set; }
- public int RouteID { get; set; }
- public int Priority { get; set; }
- public string RouteStep { get; set; }
- public RouteCacheState Status { get; set; }
- }
- }
|