package com.ltkj.hosp.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ltkj.hosp.domain.TjJcycxm; import org.apache.ibatis.annotations.Delete; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; /** * ClassName: TjJcycxmMapper
* Description:
* date: 2025/1/16 18:21
* * @author zjh
*/ @Mapper public interface TjJcycxmMapper extends BaseMapper { @Delete("DELETE FROM tj_jcycxm WHERE tjh=#{s}") void deletedByTjh(String s); @Delete("DELETE FROM tj_jcycxm WHERE tjh= #{s} AND pro_name=#{xmmc}") void deletedByTjhAndXmm(@Param("s") String s,@Param("xmmc") String xmmc); }