| 12345678910111213141516171819202122232425 |
- package com.ruoyi.project.mapper;
- import com.ruoyi.project.domain.ProjectStaff;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- public interface ProjectStaffMapper {
- int deleteByPrimaryKey(Long id);
- int insert(ProjectStaff record);
- int insertSelective(ProjectStaff record);
- ProjectStaff selectByPrimaryKey(Long id);
- int updateByPrimaryKeySelective(ProjectStaff record);
- int updateByPrimaryKey(ProjectStaff record);
- void deleteBypid(Long id);
- List<ProjectStaff> selectByPid(Long id);
- }
|