leutu
2024-05-08 7922905e4987789b636abdce1a240f4cee7c971b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.terra.lfdcexp.dao;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.terra.lfdcexp.entity.SysUserEntity;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * ${comments}
 * 
 * @author chenshun
 * @email sunlightcs@gmail.com
 * @date 2023-09-21 19:07:03
 */
@Mapper
public interface SysUserDao extends BaseMapper<SysUserEntity> {
    
}