1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.gs.dingtalk.mapper;
 
import com.gs.dingtalk.entity.QaSj;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
/**
* @author Administrator
* @description 针对表【QA_SJ】的数据库操作Mapper
* @createDate 2025-12-03 19:48:50
* @Entity com.gs.dingtalk.entity.QaSj
*/
public interface QaSjMapper extends BaseMapper<QaSj> {
 
}