package com.dy.pmsGlobal.daoPr;
|
|
import com.dy.pmsGlobal.pojoPr.PrScheduleRel;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
@Mapper
|
public interface PrScheduleRelMapper {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(PrScheduleRel record);
|
|
int insertSelective(PrScheduleRel record);
|
|
PrScheduleRel selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(PrScheduleRel record);
|
|
int updateByPrimaryKey(PrScheduleRel record);
|
|
void deleteByScheduleId(Long scheduleId);
|
|
List<PrScheduleRel> selectByScheduleId(Long scheduleId);
|
}
|