mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
update
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package com.jsowell.pile.service;
|
||||
|
||||
import com.jsowell.pile.dto.MemberFeedbackDTO;
|
||||
import com.jsowell.pile.dto.QueryMemberFeedbackDTO;
|
||||
import com.jsowell.pile.vo.uniapp.customer.MemberFeedbackVO;
|
||||
|
||||
import java.util.List;
|
||||
@@ -19,4 +20,30 @@ public interface MemberFeedbackService {
|
||||
* @return
|
||||
*/
|
||||
List<MemberFeedbackVO> getFeedbackList(String memberId);
|
||||
|
||||
/**
|
||||
* 条件查询用户反馈信息列表 (管理后台使用)
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
List<MemberFeedbackVO> selectFeedbackList(QueryMemberFeedbackDTO dto);
|
||||
|
||||
/**
|
||||
* 根据memberId获取用户反馈信息
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
MemberFeedbackVO getFeedbackById(Long id);
|
||||
|
||||
/**
|
||||
* 根据memberId删除用户反馈信息
|
||||
* @param dto
|
||||
*/
|
||||
void updateFeedback(QueryMemberFeedbackDTO dto);
|
||||
|
||||
/**
|
||||
* 根据ids删除用户反馈信息
|
||||
* @param ids
|
||||
*/
|
||||
void deleteFeedbackByIds(List<Long> ids);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user