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 <br/>
|
* Description: <br/>
|
* date: 2024/12/24 08:53<br/>
|
*
|
* @author zjh<br />
|
*/
|
@Mapper
|
public interface TjProGzjyMapper extends BaseMapper<TjProGzjy> {
|
@Delete("delete from tj_pro_gzjy where tj_number=#{tjNum} and pro_id=#{proId}")
|
void deletedByTjNumAndProId(@Param("proId") String proId,@Param("tjNum") String tjNum);
|
}
|