青羊经侦大队-数据平台
wl
2022-12-23 b680856aa7a5c7225fae1ea81f2706f10437f373
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.example.jz.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.jz.modle.entity.User;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 用户表(User)表数据库访问层
 *
 * @author makejava
 * @since 2022-07-11 16:35:57
 */
@Mapper
public interface UserDao extends BaseMapper<User> {
}