123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.sinosoft.em.alert.duty.transfer.service;
- /**
- * 实现交接班日志业务
- */
- public interface AlertTransferService{
- /**
- * 查询接班人
- *
- * @return
- */
- public String querySucceed();
- /**
- * 查询部门
- *
- * @return
- */
- public String queryDept();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /**
- * 发布交接班日志
- *
- * @param params
- * 表单信息
- * @return
- * @throws PersistenceException
- * @throws TransformTypeException
- */
- /*public Msg release(String params) throws PersistenceException;*/
- }
|