12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package nc.itf.pubdev.pubtool.logserver;
- import nc.vo.pub.BusinessException;
- import nc.vo.pub.lang.UFBoolean;
- public interface IDevExecLogServer_RequiresNew {
-
- /**
- * @deprecated
- * 记录二开程序日志
- * @param isSuccess 状态(Y:成功,N:失败)
- * @param operation 操作
- * @param resultInfo 结果信息
- * @param errorInfo 异常信息
- * @param sendData 执行的数据
- * @param billId 单据id
- * @param billType 单据类型编码
- * @param billName 单据名称
- * @return
- * @throws BusinessException
- */
- public boolean insertLog_RequiresNew(UFBoolean isSuccess, String operation,
- String resultInfo, String errorInfo, String sendData,
- String billId, String billType, String billName) ;
-
-
- /**
- * 记录二开文件下载日志
- * @param isSuccess 状态(Y:成功,N:失败)
- * @param operation 操作
- * @param resultInfo 结果信息
- * @param errorInfo 异常信息
- * @param sendData 执行的数据
- * @param filename 文件名称
- * @param downdate 下载日期
- * @param downtype 下载类型
- * @param filetype 文件类型
- * @return
- * @throws BusinessException
- */
- public boolean insertFileLog_RequiresNew(UFBoolean isSuccess, String operation,
- String resultInfo, String errorInfo, String sendData,
- String filename, String downdate, String downtype,String filetype);
-
-
- /**
- *
- * 记录二开程序日志
- * @param isSuccess 状态(Y:成功,N:失败)
- * @param resultInfo 结果信息
- * @param errorInfo 异常信息
- * @param sendData 执行的数据
- * @param billId 单据id
- * @param billType 单据类型编码
- * @param billName 单据名称
- * @param dir 0:NC->OUTSYS 1:OUTSYS->NC 2:NCLOG
- * @return
- * @throws BusinessException
- */
- public boolean insertLog_RequiresNew(UFBoolean isSuccess,
- String resultInfo, String errorInfo, String sendData,
- String billId, String billType, String billName,int dir) ;
- }
|