| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ltkj.hosp.domain.TjGroupingPro; |
| | | import com.ltkj.hosp.vodomain.AddNewReservationConfirm; |
| | | import org.apache.ibatis.annotations.Insert; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.apache.ibatis.annotations.*; |
| | | |
| | | /** |
| | | * 体检项目分组Mapper接口 |
| | |
| | | List<AddNewReservationConfirm> getAddNewReservationConfirm(String groupingId); |
| | | |
| | | |
| | | @Select("DELETE FROM tj_grouping_pro a WHERE a.grouping_id =#{groupingId}") |
| | | @Delete("DELETE FROM tj_grouping_pro WHERE grouping_id =#{groupingId}") |
| | | void deletedTjGroupingProByGroupingId(String groupingId); |
| | | // |
| | | // @Insert("") |