CustomerServiceImpl.java
523 Bytes
package com.huaheng.pc.general.customer.service;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.pc.general.customer.mapper.CustomerMapper;
import com.huaheng.pc.general.customer.domain.Customer;
import com.huaheng.pc.general.customer.service.CustomerService;
@Service
public class CustomerServiceImpl extends ServiceImpl<CustomerMapper, Customer> implements CustomerService{
}