package com.ltkj.hosp.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ltkj.hosp.domain.TjXdtgmdjg;
|
import com.ltkj.hosp.mapper.TjXdtgmdjgMapper;
|
import com.ltkj.hosp.service.TjXdtgmdjgService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* ClassName: TjXdtgmdjgServiceImpl <br/>
|
* Description: <br/>
|
* date: 2025/3/31 15:47<br/>
|
*
|
* @author zjh<br />
|
*/
|
@Service
|
public class TjXdtgmdjgServiceImpl extends ServiceImpl<TjXdtgmdjgMapper, TjXdtgmdjg> implements TjXdtgmdjgService {
|
|
@Autowired
|
private TjXdtgmdjgMapper mapper;
|
|
@Override
|
public void deletedByTJhAndProId(String tjNumber, String proId) {
|
mapper.deletedByTJhAndProId(tjNumber,proId);
|
}
|
}
|