| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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);
- }
|