Browse Source

Bug fix

master
fanwensheng 3 years ago
parent
commit
4f60425f32
  1. 2
      04.系统编码/DAL/PointDAL.cs

2
04.系统编码/DAL/PointDAL.cs

@ -24,7 +24,7 @@ namespace Pingchuan.BeijingSafeguard.DAL
public static List<Point> Query(int userId)
{
string sql = $@"select * points where user_id = @0";
string sql = $@"select * from points where user_id = @0";
return db.Fetch<Point>(sql, userId);
}
}

Loading…
Cancel
Save