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

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);
}