ProjectStaffMapper.java 546 B

12345678910111213141516171819202122232425
  1. package com.ruoyi.project.mapper;
  2. import com.ruoyi.project.domain.ProjectStaff;
  3. import org.apache.ibatis.annotations.Param;
  4. import java.util.List;
  5. public interface ProjectStaffMapper {
  6. int deleteByPrimaryKey(Long id);
  7. int insert(ProjectStaff record);
  8. int insertSelective(ProjectStaff record);
  9. ProjectStaff selectByPrimaryKey(Long id);
  10. int updateByPrimaryKeySelective(ProjectStaff record);
  11. int updateByPrimaryKey(ProjectStaff record);
  12. void deleteBypid(Long id);
  13. List<ProjectStaff> selectByPid(Long id);
  14. }