123456789101112131415161718192021222324252627 |
- package com.huimv.busi.xt.model;
- import java.util.List;
- import java.util.Map;
- import com.huimv.busi.xt.model.BaseService;
- /**
- * 存储过程service
- *
- * @author hongjun.hu
- * @version 1.0
- * @history
- */
- public interface ProcedureService extends BaseService {
- public void createOrAlterProcedure(String prcName, String prcText) throws Exception;
-
- public void dropProcedure(String prcName) throws Exception;
-
- public String selectZls(Map<String, Object> map, int flag);
-
- public List<Map<String, Object>> selectSlxh(Map<String, Object> map);
-
- public String selectPjtz(Map<String, Object> map, int flag);
-
- public List<Map<String, Object>> selectQtxx(Map<String, Object> map);
- }
|