ITestLogService.java 593 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package cn.gygxzc.envir.test.service;
  2. import cn.gygxzc.envir.test.model.TestLog;
  3. /**
  4. * Created by niantuo on 2018/9/30.
  5. */
  6. public interface ITestLogService {
  7. /**
  8. * 添加数据
  9. *
  10. * @param log 添加数据
  11. */
  12. TestLog addLog(TestLog log);
  13. /**
  14. * 更新数据
  15. *
  16. * @param log 数据对象
  17. */
  18. void update(TestLog log);
  19. /**
  20. * 物理删除
  21. *
  22. * @param id 记录的id
  23. */
  24. void physicalDeleteById(long id);
  25. /**
  26. * 逻辑删除
  27. *
  28. * @param id 记录的id
  29. */
  30. void deleteById(long id);
  31. }