RestrictProjectMapper.java 896 B

123456789101112131415161718192021222324252627282930313233
  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. }