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> {
|
|
}
|