package com.ltkj.hosp.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ltkj.hosp.domain.TjProGzjy;
|
import com.ltkj.hosp.mapper.TjProGzjyMapper;
|
import com.ltkj.hosp.service.TjProGzjyService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* ClassName: TjProGzjyServiceImpl <br/>
|
* Description: <br/>
|
* date: 2024/12/24 08:54<br/>
|
*
|
* @author zjh<br />
|
*/
|
@Service
|
public class TjProGzjyServiceImpl extends ServiceImpl<TjProGzjyMapper, TjProGzjy> implements TjProGzjyService {
|
@Autowired
|
private TjProGzjyMapper mapper;
|
@Override
|
public void deletedByTjNumAndProId(String proId, String tjNum) {
|
mapper.deletedByTjNumAndProId( proId, tjNum);
|
}
|
}
|