| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- 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>
- /// 参数传递
- /// </summary>
- 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;
- }
- /// <summary>
- /// 条件
- /// </summary>
- public string sqlCondition
- {
- get
- {
- return this._sqlCondition;
- }
- set
- {
- this._sqlCondition = value;
- }
- }
- /// <summary>
- /// 完整sql
- /// </summary>
- public string sqlStr
- {
- get
- {
- return this._sqlStr;
- }
- set
- {
- this._sqlStr = value;
- }
- }
- /// <summary>
- /// openbase
- /// </summary>
- public OpeBase ob
- {
- get
- {
- return this._ob;
- }
- set
- {
- this._ob = value;
- }
- }
- }
- }
|