package com.ltkj.hosp.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.ltkj.hosp.domain.TjCustomerBlack; import com.ltkj.hosp.mapper.TjCustomerBlackMapper; import com.ltkj.hosp.service.TjCustomerBlackService; import org.springframework.stereotype.Service; import javax.annotation.Resource; @Service public class TjCustomerBlackServiceImpl extends ServiceImpl implements TjCustomerBlackService { @Resource private TjCustomerBlackMapper mapper; @Override public TjCustomerBlack isTjCustomerBlack(String cusId) { return mapper.isTjCustomerBlack(cusId); } }