PublicReleaseClockMapper.java 747 B

1234567891011121314151617181920212223242526272829
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.PublicReleaseClock;
  3. import java.util.List;
  4. /**
  5. * @author Administrator
  6. * @description 针对表【public_release_clock(公出打卡表)】的数据库操作Mapper
  7. * @createDate 2024-04-19 14:56:48
  8. * @Entity com.goafanti.common.model.PublicReleaseClock
  9. */
  10. public interface PublicReleaseClockMapper {
  11. int deleteByPrimaryKey(Integer id);
  12. int insert(PublicReleaseClock record);
  13. int insertSelective(PublicReleaseClock record);
  14. PublicReleaseClock selectByPrimaryKey(Integer id);
  15. int updateByPrimaryKeySelective(PublicReleaseClock record);
  16. int updateByPrimaryKey(PublicReleaseClock record);
  17. List<PublicReleaseClock> selectList(List<Integer> list);
  18. }