王飞
2025-01-23 2de56e472a41b7feb90be29a54a2d6f5a6c8762e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.hxzkappboot.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
import com.hxzkappboot.mapper.TbSmsLogMapper;
import com.hxzkappboot.pojo.TbSmsLog;
import com.hxzkappboot.service.TbSmsLogService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 *  服务实现类
 * </p>
 *
 * @author wangfei
 * @since 2024-03-08
 */
@Service
public class TbSmsLogServiceImpl extends ServiceImpl<TbSmsLogMapper, TbSmsLog> implements TbSmsLogService {
 
}