CustomerServiceImpl.java 464 Bytes
package com.huaheng.pc.config.customer.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.huaheng.pc.config.customer.domain.Customer;
import com.huaheng.pc.config.customer.mapper.CustomerMapper;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;

@Service
public class CustomerServiceImpl extends ServiceImpl<CustomerMapper, Customer> implements IService<Customer> {

}