Commit 7173c908 by 泽锋 李

fix

parent e2822c27
...@@ -2097,7 +2097,7 @@ where 1=1 "; ...@@ -2097,7 +2097,7 @@ where 1=1 ";
{ {
return _connection.Query<dc_auto_purchase_advise>(" select * from dc_auto_purchase_advise where create_time>=@bdate ",new { return _connection.Query<dc_auto_purchase_advise>(" select * from dc_auto_purchase_advise where create_time>=@bdate ",new {
bdate = DateTime.Now.ToDayHome() bdate = DateTime.Now.ToDayHome()
}).OrderByDescending(s=>s.create_time).ToList(); }).Where(s=>s.title!=null && (!s.title.Contains("刷新"))).OrderByDescending(s=>s.create_time).ToList();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment