44323
2023-11-28 fade481769731552d9a16c79c9a5323e6f015b36
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dsh.other.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.other.entity.SysLoginLog;
import com.dsh.other.mapper.SysLoginLogMapper;
import com.dsh.other.service.SysLoginLogService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 登录记录 服务实现类
 * </p>
 *
 * @author jqs
 * @since 2023-07-07
 */
@Service
public class SysLoginLogServiceImpl extends ServiceImpl<SysLoginLogMapper, SysLoginLog> implements SysLoginLogService {
 
}