zjh
2025-01-16 5c58a8a9fa43c671af54358172f853f02c4acfc7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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<TjCustomerBlackMapper, TjCustomerBlack> implements TjCustomerBlackService {
 
    @Resource
    private TjCustomerBlackMapper mapper;
    @Override
    public TjCustomerBlack isTjCustomerBlack(String cusId) {
        return mapper.isTjCustomerBlack(cusId);
    }
}