zjh
2025-06-20 5f1d1c462bbf49bc6a22b9e17b49733bcc1e0bc6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
import java.util.Map;
 
/**
 * ClassName: TjXdtgmdjgMapper <br/>
 * Description: <br/>
 * date: 2025/3/31 15:46<br/>
 *
 * @author zjh<br />
 */
@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);
 
    @Select("call pro_pdf_fujian(#{tjnumber,mode=IN})")
    List<TjXdtgmdjg> xdtGlAttProByTjNum(String tjnumber);
}