XiaoRuby
2023-08-11 7b09f233bde70508f6db7e08e983e9a2c4bb3e99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yuanchu.mom.mapper;
 
import com.yuanchu.mom.pojo.Standard;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
/**
* @author Administrator
* @description 针对表【standard】的数据库操作Mapper
* @createDate 2023-07-26 15:59:05
* @Entity com.yuanchu.mom.pojo.Standard
*/
public interface StandardMapper extends BaseMapper<Standard> {
 
}