单字段.OrderBy(p => p.Status).ToList();
多字段
.OrderBy(p => p.Status).ThenByDescending(p=>p.ApplyTime).ToList();
//注: .ThenBy正序 .ThenByDescending倒序