You've already forked FrameTour-BE
小程序首页景区列表,任务状态接口
This commit is contained in:
@ -15,15 +15,26 @@ import java.util.List;
|
||||
@Mapper
|
||||
public interface SourceMapper {
|
||||
List<SourceRespVO> list(SourceReqQuery sourceReqQuery);
|
||||
|
||||
SourceRespVO getById(Long id);
|
||||
|
||||
int add(SourceEntity source);
|
||||
|
||||
int deleteById(Long id);
|
||||
|
||||
int update(SourceEntity source);
|
||||
|
||||
/**
|
||||
*
|
||||
* @param sourceReqQuery
|
||||
* @return
|
||||
*/
|
||||
List<SourceRespVO> listGroupByType(SourceReqQuery sourceReqQuery);
|
||||
|
||||
/**
|
||||
* 用户素材数量
|
||||
*
|
||||
* @param userId
|
||||
* @return
|
||||
*/
|
||||
int countByMemberId(String userId);
|
||||
}
|
||||
|
Reference in New Issue
Block a user