| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ltkj.hosp.domain.TjPureToneTestDetil; |
| | | import org.apache.ibatis.annotations.Delete; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | /** |
| | | * @Company: 西安路泰科技有限公司 |
| | |
| | | */ |
| | | @Mapper |
| | | public interface TjPureToneTestDetilMapper extends BaseMapper<TjPureToneTestDetil> { |
| | | |
| | | @Delete("DELETE FROM tj_pure_tone_test_detil WHERE pure_test_id=#{pureTestId}") |
| | | void deletedTjPureToneTestDetilByPureTestId(String pureTestId); |
| | | } |