package com.zy.crm.manager.service.impl;
|
|
import com.zy.crm.manager.mapper.CstmrFollMapper;
|
import com.zy.crm.manager.entity.CstmrFoll;
|
import com.zy.crm.manager.service.CstmrFollService;
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
import java.util.List;
|
|
@Service("cstmrFollService")
|
public class CstmrFollServiceImpl extends ServiceImpl<CstmrFollMapper, CstmrFoll> implements CstmrFollService {
|
@Override
|
public List<Integer> selectCstmrIdUserId(Integer userId) {
|
return this.baseMapper.selectCstmrIdUserId(userId);
|
}
|
}
|