forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
802 B
33 lines
802 B
5 years ago
|
package com.epmet.dao;
|
||
|
|
||
|
import com.epmet.dto.form.UserBadgeListFormDTO;
|
||
|
import com.epmet.dto.result.UserBadgeListResultDTO;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @Author zxc
|
||
|
* @DateTime 2020/11/3 1:22 下午
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface UserBadgeDao {
|
||
|
|
||
|
/**
|
||
|
* @Description 查询已经点亮的徽章
|
||
|
* @Param userBadgeListFormDTO
|
||
|
* @author zxc
|
||
|
* @date 2020/11/3 1:33 下午
|
||
|
*/
|
||
|
List<UserBadgeListResultDTO> selectBadgeList(UserBadgeListFormDTO userBadgeListFormDTO);
|
||
|
|
||
|
/**
|
||
|
* @Description 查询默认徽章和改名后的徽章
|
||
|
* @Param userBadgeListFormDTO
|
||
|
* @author zxc
|
||
|
* @date 2020/11/3 3:11 下午
|
||
|
*/
|
||
|
List<UserBadgeListResultDTO> selectAllBadge(UserBadgeListFormDTO userBadgeListFormDTO);
|
||
|
|
||
|
}
|