IDevExecLogServer_RequiresNew.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package nc.itf.pubdev.pubtool.logserver;
  2. import nc.vo.pub.BusinessException;
  3. import nc.vo.pub.lang.UFBoolean;
  4. public interface IDevExecLogServer_RequiresNew {
  5. /**
  6. * @deprecated
  7. * 记录二开程序日志
  8. * @param isSuccess 状态(Y:成功,N:失败)
  9. * @param operation 操作
  10. * @param resultInfo 结果信息
  11. * @param errorInfo 异常信息
  12. * @param sendData 执行的数据
  13. * @param billId 单据id
  14. * @param billType 单据类型编码
  15. * @param billName 单据名称
  16. * @return
  17. * @throws BusinessException
  18. */
  19. public boolean insertLog_RequiresNew(UFBoolean isSuccess, String operation,
  20. String resultInfo, String errorInfo, String sendData,
  21. String billId, String billType, String billName) ;
  22. /**
  23. * 记录二开文件下载日志
  24. * @param isSuccess 状态(Y:成功,N:失败)
  25. * @param operation 操作
  26. * @param resultInfo 结果信息
  27. * @param errorInfo 异常信息
  28. * @param sendData 执行的数据
  29. * @param filename 文件名称
  30. * @param downdate 下载日期
  31. * @param downtype 下载类型
  32. * @param filetype 文件类型
  33. * @return
  34. * @throws BusinessException
  35. */
  36. public boolean insertFileLog_RequiresNew(UFBoolean isSuccess, String operation,
  37. String resultInfo, String errorInfo, String sendData,
  38. String filename, String downdate, String downtype,String filetype);
  39. /**
  40. *
  41. * 记录二开程序日志
  42. * @param isSuccess 状态(Y:成功,N:失败)
  43. * @param resultInfo 结果信息
  44. * @param errorInfo 异常信息
  45. * @param sendData 执行的数据
  46. * @param billId 单据id
  47. * @param billType 单据类型编码
  48. * @param billName 单据名称
  49. * @param dir 0:NC->OUTSYS 1:OUTSYS->NC 2:NCLOG
  50. * @return
  51. * @throws BusinessException
  52. */
  53. public boolean insertLog_RequiresNew(UFBoolean isSuccess,
  54. String resultInfo, String errorInfo, String sendData,
  55. String billId, String billType, String billName,int dir) ;
  56. }