?? slaitemstatuslogbo.java
字號:
package com.asiainfo.ainx.slaconf.bo;
import java.util.ArrayList;
import java.util.HashMap;
import org.apache.log4j.Logger;
import com.asiainfo.ainx.slaconf.dao.ResStatusLogDAO;
import com.asiainfo.ainx.slaconf.vo.ResItemVO;
import com.asiainfo.ainx.slaconf.vo.SlaResItemStatusVO;
/**
*
* @author qihong
*
*/
public class SlaItemStatusLogBO {
private static Logger log = Logger
.getLogger("com.asiainfo.ainx.slaconf.bo.SlaItemStatusLogBO");
/**
* 獲取資源指標狀態信息
* @return
* @throws Exception
*/
public ArrayList getResStatusLog(String resId,String resType,String itemId)
throws Exception {
/**
* 創建 DAO 對象
*/
ResStatusLogDAO nodedao = new ResStatusLogDAO();
/**
* 獲取表單記錄列表
*/
ArrayList col = nodedao.getResStatusLogList(resId, resType,itemId);
System.out.println("col.size="+col.size());
return col;
}
public static void main(String args[]){
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -