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;
import java.util.Collections;
import java.util.List;
import java.util.Map;
/**
* ClassName: TjXdtgmdjgServiceImpl
* Description:
* date: 2025/3/31 15:47
*
* @author zjh
*/
@Service
public class TjXdtgmdjgServiceImpl extends ServiceImpl implements TjXdtgmdjgService {
@Autowired
private TjXdtgmdjgMapper mapper;
@Override
public void deletedByTJhAndProId(String tjNumber, String proId) {
mapper.deletedByTJhAndProId(tjNumber,proId);
}
@Override
public List xdtGlAttProByTjNum(String tjNum) {
return mapper.xdtGlAttProByTjNum(tjNum);
}
}