You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
796 B
Java
39 lines
796 B
Java
|
1 year ago
|
package com.sztzjy.linkCommerce.service;
|
||
|
|
|
||
|
|
|
||
|
|
import com.sztzjy.linkCommerce.entity.StuUserProfileDto;
|
||
|
|
import com.sztzjy.linkCommerce.util.ResultEntity;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author 17803
|
||
|
|
* @date 2024-06-12 10:43
|
||
|
|
*/
|
||
|
|
public interface StuUserProfileDatabaseService {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 用户数据基本信息
|
||
|
|
*
|
||
|
|
* @param userId
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
|
||
|
|
ResultEntity<StuUserProfileDto> getBaseInfo(String userId);
|
||
|
|
|
||
|
|
/** 条件查询用户表信息
|
||
|
|
* @param userId
|
||
|
|
* @param tableName
|
||
|
|
* @param selfTableName
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
|
||
|
|
ResultEntity getBaseInfoBySelect(String userId, String tableName, String selfTableName,Integer index,Integer size);
|
||
|
|
|
||
|
|
/*
|
||
|
|
*
|
||
|
|
* * 自荐表数据下拉框
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
|
||
|
|
ResultEntity selfExcelBaseInfo(String userId);
|
||
|
|
}
|