using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WebAPI.Models.Query
{
///
/// 查询类
///
public class QueryModel
{
///
/// sql查询语句
///
public string sWhere { get; set; }
///
/// 查询用户
///
public string user { get; set; }
}
}