DateTime.Now.ToString(); //当前时间
DateTime.Now.AddDays(7).ToString(); //当前时间加上7天
DateTime.Now.AddDays(-7).ToString(); //当前时间减去7天