refactor: 重命名 backend-single 目录为 server
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.emotion.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.emotion.dto.request.social.SocialInsightGenerateRequest;
|
||||
import com.emotion.dto.request.social.SocialInsightUpdateRequest;
|
||||
import com.emotion.dto.response.social.SocialProfileInsightResponse;
|
||||
import com.emotion.entity.SocialProfileInsight;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface SocialInsightService extends IService<SocialProfileInsight> {
|
||||
|
||||
List<SocialProfileInsightResponse> generateInsights(String userId, SocialInsightGenerateRequest request);
|
||||
|
||||
List<SocialProfileInsightResponse> listByUser(String userId, String status);
|
||||
|
||||
SocialProfileInsightResponse updateByUser(String userId, String id, SocialInsightUpdateRequest request);
|
||||
|
||||
boolean deleteByUser(String userId, String id);
|
||||
}
|
||||
Reference in New Issue
Block a user