Blame view

src/main/java/com/huaheng/pc/config/customer/service/CustomerServiceImpl.java 464 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
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> {

}