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