liding
23 小时以前 d75958896efd4c8a6daee9c56d048641b99cacf6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.business.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.business.entity.QrCodeScanRecord;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * <p>
 * 二维码扫码记录表 Mapper 接口
 * </p>
 *
 * @author ld
 * @since 2025-06-24
 */
@Mapper
public interface QrCodeScanRecordMapper extends BaseMapper<QrCodeScanRecord> {
 
}