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
{
///
/// 传参数使用类,含条件和ob
///
public class ClientParamWithSqlConditionAndOpenBase
{
private CoreFS.CA06.OpeBase _ob = null;
private string _sqlCondition = "";
private ArrayList _sqlConditionList = null;
private object[] _param = null;
///
/// 参数数组
///
///
///
public ClientParamWithSqlConditionAndOpenBase(object[] args, OpeBase ob)
{
this._param = args;
this._ob = ob;
}
public ClientParamWithSqlConditionAndOpenBase()
{
}
///
///
///
///
public ClientParamWithSqlConditionAndOpenBase(OpeBase ob)
{
this._ob = ob;
}
public ClientParamWithSqlConditionAndOpenBase(string sqlConditon, OpeBase ob)
{
this._sqlCondition = sqlConditon;
this._ob = ob;
}
public ClientParamWithSqlConditionAndOpenBase(ArrayList sqlConditionList, OpeBase ob)
{
this._sqlConditionList = sqlConditionList;
this._ob = ob;
}
///
/// 条件
///
public string sqlCondition
{
get
{
return this._sqlCondition;
}
set
{
this._sqlCondition = value;
}
}
public ArrayList sqlConditionList
{
get
{
return this._sqlConditionList;
}
set
{
this._sqlConditionList = value;
}
}
///
/// 数组参数
///
public object[] param
{
get
{
return this._param;
}
set
{
this._param = value;
}
}
///
/// openbase
///
public OpeBase ob
{
get
{
return this._ob;
}
set
{
this._ob = value;
}
}
}
}