luodangjia
2024-12-10 ee7ce5d1cbf80bee0a15c1e5bc5eaa30858d812b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.hollywood.manage.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.hollywood.manage.mapper.TCustomerServiceMapper;
import com.hollywood.manage.service.TCustomerServiceService;
import com.hollywood.common.model.TCustomerService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 客服配置表 服务实现类
 * </p>
 *
 * @author xiaochen
 * @since 2024-02-29
 */
@Service
public class TCustomerServiceServiceImpl extends ServiceImpl<TCustomerServiceMapper, TCustomerService> implements TCustomerServiceService {
 
}