namespace SHJX.Service.Model.CRUDModules { [Table("task_route")] public class TaskRoute { [Key] public int SerialKey { get; set; } public string OpKey { get; set; } public string RouteType { get; set; } public string From { get; set; } public string To { get; set; } public string IsInit { get; set; } public string NextRoute { get; set; } public string Description { get; set; } } }