使用雜湊傳值

2021-06-29 07:56:40 字數 1062 閱讀 2250

public tchospinfodata getonhospbasic(decimal id_orgid, string is_frcode, string is_fjcmyear, string is_fcountymark, string outyn, string allyn, string is_fimportcode,

system.collections.idictionary idictionary)

{icommnghosp factory = factory.commng.commnghosp.create();

string sql = "";

string is_frcode=string.empty;

if(idictionary.contains("is_frcode")) is_frcode=idictionary["is_frcode"].tostring();

//基層介面模式為3,結算是必須是有出院時間的記錄 潘帥陽 2023年3月24日9:43:09

sql = "and x1.fimportorg=" + id_orgid + " and x1.frcode='" + is_frcode + "' and x1.fjcmyear<='" + is_fjcmyear + "' and x1.fcountymark='" + is_fcountymark + "' and  x1.fouthospdate is not null  and    x1.fimportcode='3'  order by x1.findate desc"; 

return factory.querytchospinfo(sql);

呼叫://使用雜湊傳值便於擴充套件

hashtable ht=new hashtable();

ht.add("is_frcode",is_frcode);

//所有未結算資訊基層介面

dataset ds = new business.commngbiz.commnghosp().getonhospbasic(convert.todecimal(is_fmorgid), is_frcode, is_jcmyear, "0", "y", "1",ht);

傳值 傳值引用

首先對傳值和傳引用要有個基本的概念 傳值 傳遞的是值的副本。方法中對副本的修改,不會影響到呼叫方。傳引用 傳遞的是引用的副本,共用乙個記憶體,會影響到呼叫方。此時,形參和實參指向同乙個記憶體位址。對引用副本本身 物件位址 的修改,如設定為null,重新指向其他物件,不會影響到呼叫方。直接上 更好的理...

通知傳值的使用

輸入所要傳送的資訊 同時將label的值通過button方法呼叫傳遞,ibaction buttonclick id sender 在傳送通知後,在所要接收的控制器中註冊通知監聽者,將通知傳送的資訊接收 void viewdidload void tongzhi nsnotification tex...

android使用Intent傳值

一般使用intent傳值就是本介面的資料傳到下乙個介面或者下面的介面傳到上個介面 一 第一種是使用intent 把值傳入下乙個介面 首先你要在當前的activity裡寫入 intent inte new intent mainactivity.this,twoactivity.class inte....