package com.ltkj.hosp.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ltkj.hosp.domain.TjProGzjy; import org.apache.ibatis.annotations.Delete; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; /** * ClassName: TjProGzjyMapper
* Description:
* date: 2024/12/24 08:53
* * @author zjh
*/ @Mapper public interface TjProGzjyMapper extends BaseMapper { @Delete("delete from tj_pro_gzjy where tj_number=#{tjNum} and pro_id=#{proId}") void deletedByTjNumAndProId(@Param("proId") String proId,@Param("tjNum") String tjNum); }