skyouc
2025-02-26 3c77b4958b2a06b62721560b4d306b901651e5c6
1
2
3
4
5
6
7
8
9
10
11
12
package com.vincent.rsf.server.manager.service.impl;
 
import com.vincent.rsf.server.manager.mapper.CustomerMapper;
import com.vincent.rsf.server.manager.entity.Customer;
import com.vincent.rsf.server.manager.service.CustomerService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("customerService")
public class CustomerServiceImpl extends ServiceImpl<CustomerMapper, Customer> implements CustomerService {
 
}