21 lines
556 B
Java
21 lines
556 B
Java
package com.rj.service.impl;
|
|
|
|
import com.rj.entity.CustomerManagement;
|
|
import com.rj.mapper.CustomerManagementMapper;
|
|
import com.rj.service.ICustomerManagementService;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* <p>
|
|
* 客户管理表 服务实现类
|
|
* </p>
|
|
*
|
|
* @author 李中华 ,spllzh
|
|
* @since 2025-08-07
|
|
*/
|
|
@Service
|
|
public class CustomerManagementServiceImpl extends ServiceImpl<CustomerManagementMapper, CustomerManagement> implements ICustomerManagementService {
|
|
|
|
}
|