SysLogDao.java 974 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.ydtech.modules.admin.dao;
  2. import com.ydtech.modules.admin.model.SysLog;
  3. import com.ydtech.modules.admin.model.vo.SysLogQueryVO;
  4. import org.springframework.stereotype.Repository;
  5. import java.util.List;
  6. @Repository
  7. public interface SysLogDao {
  8. /**
  9. * description:selectByPrimaryKey
  10. *
  11. * @author: hantong
  12. * @date: 2021-08-23
  13. * @since: 1.0
  14. */
  15. SysLog selectByPrimaryKey(Long id);
  16. /**
  17. * description:deleteByPrimaryKey
  18. *
  19. * @author: hantong
  20. * @date: 2021-08-23
  21. * @since: 1.0
  22. */
  23. int deleteByPrimaryKey(Long id);
  24. /**
  25. * description:insert
  26. *
  27. * @author: hantong
  28. * @date: 2021-08-23
  29. * @since: 1.0
  30. */
  31. int insert(SysLog record);
  32. /**
  33. * description:insertSelective
  34. *
  35. * @author: hantong
  36. * @date: 2021-08-23
  37. * @since: 1.0
  38. */
  39. int insertSelective(SysLog record);
  40. List<SysLog> selectPaging(SysLogQueryVO sysLogQueryVO);
  41. }