RestrictProjectMapper.java 996 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.goafanti.common.dao;
  2. import com.goafanti.business.bo.InputRestrictProject;
  3. import com.goafanti.business.bo.OutRestrictProject;
  4. import com.goafanti.common.model.RestrictProject;
  5. import java.util.List;
  6. /**
  7. * @author Administrator
  8. * @description 针对表【restrict_project(限定项目表)】的数据库操作Mapper
  9. * @createDate 2024-05-13 16:41:41
  10. * @Entity com.goafanti.common.model.RestrictProject
  11. */
  12. public interface RestrictProjectMapper {
  13. int deleteByPrimaryKey(Integer id);
  14. int insert(RestrictProject record);
  15. int insertSelective(RestrictProject record);
  16. RestrictProject selectByPrimaryKey(Integer id);
  17. int updateByPrimaryKeySelective(RestrictProject record);
  18. int updateByPrimaryKey(RestrictProject record);
  19. RestrictProject selectByPid(InputRestrictProject in);
  20. List<OutRestrictProject> selectByUidAndAid(InputRestrictProject in);
  21. List<OutRestrictProject> selectByUid(String id);
  22. void updateRelease(List<Integer> list2);
  23. }