ProcedureService.java 691 B

123456789101112131415161718192021222324252627
  1. package com.huimv.busi.xt.model;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.huimv.busi.xt.model.BaseService;
  5. /**
  6. * 存储过程service
  7. *
  8. * @author hongjun.hu
  9. * @version 1.0
  10. * @history
  11. */
  12. public interface ProcedureService extends BaseService {
  13. public void createOrAlterProcedure(String prcName, String prcText) throws Exception;
  14. public void dropProcedure(String prcName) throws Exception;
  15. public String selectZls(Map<String, Object> map, int flag);
  16. public List<Map<String, Object>> selectSlxh(Map<String, Object> map);
  17. public String selectPjtz(Map<String, Object> map, int flag);
  18. public List<Map<String, Object>> selectQtxx(Map<String, Object> map);
  19. }