// sb.Append($@"SELECT a.*,b.`Name` as UserName,b.Photo as UserPhoto from RB_Point_order as a LEFT JOIN rb_member_user as b on a.UserId=b.Id where a.state=0 ");
if(where!=null)
{
if(where.Group_Id>0)
{
sb.AppendFormat(" and a.Group_Id={0}",where.Group_Id);
}
if(where.ID>0)
{
sb.AppendFormat(" and a.ID={0}",where.ID);
}
if(where.OrderStatus>0)
{
sb.AppendFormat(" and a.OrderStatus={0}",where.OrderStatus);
}
if(where.StudentId>0)
{
sb.AppendFormat(" and a.StudentId={0}",where.StudentId);
}
if(!string.IsNullOrEmpty(where.OrderNo))
{
sb.AppendFormat(" and a.OrderNo like '%{0}%'",where.OrderNo);