| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package com.ydtech.modules.admin.dao;
- import com.ydtech.modules.admin.model.SysLog;
- import com.ydtech.modules.admin.model.vo.SysLogQueryVO;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- @Repository
- public interface SysLogDao {
- /**
- * description:selectByPrimaryKey
- *
- * @author: hantong
- * @date: 2021-08-23
- * @since: 1.0
- */
- SysLog selectByPrimaryKey(Long id);
- /**
- * description:deleteByPrimaryKey
- *
- * @author: hantong
- * @date: 2021-08-23
- * @since: 1.0
- */
- int deleteByPrimaryKey(Long id);
- /**
- * description:insert
- *
- * @author: hantong
- * @date: 2021-08-23
- * @since: 1.0
- */
- int insert(SysLog record);
- /**
- * description:insertSelective
- *
- * @author: hantong
- * @date: 2021-08-23
- * @since: 1.0
- */
- int insertSelective(SysLog record);
- List<SysLog> selectPaging(SysLogQueryVO sysLogQueryVO);
- }
|