using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Ant.Service.Common
{
///
/// 查询对象类QO
///
public class QueryObject
{
///
/// 名称
///
public string Name { get; set; }
///
/// 设置数据值
///
public Object Value { get; set; }
///
/// 数值对应的Hibernate类型
///
public Type OType { get; set; }
}
}