docs: 注释优化
This commit is contained in:
@@ -8,7 +8,7 @@ import com.youlai.boot.system.model.vo.DictItemPageVO;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 字典数据映射层
|
||||
* 字典项映射层
|
||||
*
|
||||
* @author Ray Hao
|
||||
* @since 2.9.0
|
||||
@@ -17,7 +17,7 @@ import org.apache.ibatis.annotations.Mapper;
|
||||
public interface DictItemMapper extends BaseMapper<DictItem> {
|
||||
|
||||
/**
|
||||
* 字典数据分页列表
|
||||
* 字典项分页列表
|
||||
*/
|
||||
Page<DictItemPageVO> getDictItemPage(Page<DictItemPageVO> page, DictItemPageQuery queryParams);
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ import com.youlai.boot.system.model.entity.User;
|
||||
import com.youlai.boot.system.model.query.UserPageQuery;
|
||||
import com.youlai.boot.system.model.form.UserForm;
|
||||
import com.youlai.boot.common.annotation.DataPermission;
|
||||
import com.youlai.boot.core.security.model.AuthCredentials;
|
||||
import com.youlai.boot.core.security.model.UserAuthCredentials;
|
||||
import com.youlai.boot.system.model.dto.UserExportDTO;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@@ -46,7 +46,7 @@ public interface UserMapper extends BaseMapper<User> {
|
||||
* @param username 用户名
|
||||
* @return 认证信息
|
||||
*/
|
||||
AuthCredentials getAuthCredentialsByUsername(String username);
|
||||
UserAuthCredentials getAuthCredentialsByUsername(String username);
|
||||
|
||||
/**
|
||||
* 根据微信openid获取用户认证信息
|
||||
@@ -54,7 +54,7 @@ public interface UserMapper extends BaseMapper<User> {
|
||||
* @param openid 微信openid
|
||||
* @return 认证信息
|
||||
*/
|
||||
AuthCredentials getAuthCredentialsByOpenId(String openid);
|
||||
UserAuthCredentials getAuthCredentialsByOpenId(String openid);
|
||||
|
||||
/**
|
||||
* 根据手机号获取用户认证信息
|
||||
@@ -62,7 +62,7 @@ public interface UserMapper extends BaseMapper<User> {
|
||||
* @param mobile 手机号
|
||||
* @return 认证信息
|
||||
*/
|
||||
AuthCredentials getAuthCredentialsByMobile(String mobile);
|
||||
UserAuthCredentials getAuthCredentialsByMobile(String mobile);
|
||||
|
||||
/**
|
||||
* 获取导出用户列表
|
||||
|
||||
Reference in New Issue
Block a user