|
|
@@ -29,7 +29,7 @@ namespace MySystem
|
|
|
{
|
|
|
WebCMSEntities spdb = new WebCMSEntities();
|
|
|
PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
|
|
|
- DateTime start = DateTime.Now.AddDays(-60);
|
|
|
+ DateTime start = DateTime.Now.AddDays(-100);
|
|
|
DateTime end = DateTime.Now.AddMinutes(-2);
|
|
|
int StartId = int.Parse(function.CheckInt(function.ReadInstance("/SycnSp/MerchantsId.txt")));
|
|
|
var Mers = spdb.Merchants.Where(m => m.Id >= StartId && m.CreateTime >= start && m.CreateTime <= end && m.Status == 1).OrderByDescending(m => m.Id).Take(20).ToList();
|