mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-19 21:48:03 +08:00
update
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.MemberFeedback;
|
||||
import com.jsowell.pile.dto.QueryMemberFeedbackDTO;
|
||||
import com.jsowell.pile.vo.uniapp.customer.MemberFeedbackVO;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
@@ -22,4 +24,30 @@ public interface MemberFeedbackMapper {
|
||||
* @return
|
||||
*/
|
||||
List<MemberFeedbackVO> selectMemberFeedbackList(String memberId);
|
||||
|
||||
/**
|
||||
* 根据条件查询会员反馈信息列表
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
List<MemberFeedbackVO> getFeedbackList(QueryMemberFeedbackDTO dto);
|
||||
|
||||
/**
|
||||
* 根据会员ID查询会员反馈信息
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
MemberFeedbackVO getFeedbackById(Long id);
|
||||
|
||||
/**
|
||||
* 根据ID更新会员反馈信息
|
||||
* @param dto
|
||||
*/
|
||||
void updateFeedback(QueryMemberFeedbackDTO dto);
|
||||
|
||||
/**
|
||||
* 根据ID删除会员反馈信息
|
||||
* @param id
|
||||
*/
|
||||
void deleteMemberFeedbackById(Long id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user