package com.zy.crm.manager.service.impl;
|
|
import com.zy.crm.manager.mapper.CstmrGradeMapper;
|
import com.zy.crm.manager.entity.CstmrGrade;
|
import com.zy.crm.manager.service.CstmrGradeService;
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
@Service("cstmrGradeService")
|
public class CstmrGradeServiceImpl extends ServiceImpl<CstmrGradeMapper, CstmrGrade> implements CstmrGradeService {
|
@Override
|
public CstmrGrade selectByName(Long hostId, String name) {
|
return this.baseMapper.selectByName(hostId, name);
|
}
|
}
|