| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.LgMes.Client.lgDbMgt
- {
- public class DbClientParam
- {
-
- private string _sqlStr;
- private CoreFS.CA06.OpeBase _ob;
- private object[] _param;
- public DbClientParam(string sqlStr,CoreFS.CA06.OpeBase ob)
- {
- this._sqlStr = sqlStr;
- this._ob = ob;
- }
- public DbClientParam(string sqlStr, CoreFS.CA06.OpeBase ob, object[] param)
- {
- this._sqlStr = sqlStr;
- this._ob = ob;
- this._param = param;
- }
- public DbClientParam()
- {
- }
- public string sqlStr
- {
- get
- {
- return this._sqlStr;
- }
- set
- {
- this._sqlStr = value;
- }
- }
- public CoreFS.CA06.OpeBase ob
- {
- get
- {
- return this._ob;
- }
- set
- {
- this._ob = value;
- }
- }
- public object[] param
- {
- get
- {
- return this._param;
- }
- set
- {
- this._param = value;
- }
- }
- }
- }
|