package com.zy.crm.manager.service.impl;
|
|
import com.zy.crm.manager.mapper.CustomerIndustryMapper;
|
import com.zy.crm.manager.entity.CustomerIndustry;
|
import com.zy.crm.manager.service.CustomerIndustryService;
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
@Service("customerIndustryService")
|
public class CustomerIndustryServiceImpl extends ServiceImpl<CustomerIndustryMapper, CustomerIndustry> implements CustomerIndustryService {
|
|
}
|