| 1234567891011121314151617181920212223242526272829 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.PublicReleaseClock;
- import java.util.List;
- /**
- * @author Administrator
- * @description 针对表【public_release_clock(公出打卡表)】的数据库操作Mapper
- * @createDate 2024-04-19 14:56:48
- * @Entity com.goafanti.common.model.PublicReleaseClock
- */
- public interface PublicReleaseClockMapper {
- int deleteByPrimaryKey(Integer id);
- int insert(PublicReleaseClock record);
- int insertSelective(PublicReleaseClock record);
- PublicReleaseClock selectByPrimaryKey(Integer id);
- int updateByPrimaryKeySelective(PublicReleaseClock record);
- int updateByPrimaryKey(PublicReleaseClock record);
- List<PublicReleaseClock> selectList(List<Integer> list);
- }
|