using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CoreFS.CA06;
using System.Data;
using System.Collections;
namespace Core.Mes.Client.Common
{
///
/// 参数传递
///
public class ClientParam
{
private string _sqlStr = "";
private CoreFS.CA06.OpeBase _ob = null;
private string _sqlCondition = "";
public ClientParam(string sqlStr,OpeBase ob)
{
this._sqlStr = sqlStr;
this._ob = ob;
}
public ClientParam(OpeBase ob)
{
this._ob = ob;
}
public ClientParam(string sqlStr, string sqlConditon,OpeBase ob)
{
this._sqlStr = sqlStr;
this._ob = ob;
this._sqlCondition = sqlConditon;
}
///
/// 条件
///
public string sqlCondition
{
get
{
return this._sqlCondition;
}
set
{
this._sqlCondition = value;
}
}
///
/// 完整sql
///
public string sqlStr
{
get
{
return this._sqlStr;
}
set
{
this._sqlStr = value;
}
}
///
/// openbase
///
public OpeBase ob
{
get
{
return this._ob;
}
set
{
this._ob = value;
}
}
}
}