zjh
2025-04-11 46f0694ffeaee5168a77d8935784963a3f8ee7aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ltkj.hosp.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ltkj.hosp.domain.TjXdtgmdjg;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
@Mapper
public interface TjXdtgmdjgMapper extends BaseMapper<TjXdtgmdjg> {
 
    @Delete("DELETE FROM tj_xdtgmdjg  WHERE tjh=#{tjNumber} and pro_id=#{proId}")
    void deletedByTJhAndProId(@Param("tjNumber") String tjNumber, @Param("proId") String proId);
}