package com.epmet.service; import com.epmet.dto.form.UserBadgeListFormDTO; import com.epmet.dto.form.UserOperListFormDTO; import com.epmet.dto.result.UserBadgeListResultDTO; import com.epmet.dto.result.UserOperListResultDTO; import java.util.List; /** * @Author zxc * @DateTime 2020/11/3 11:18 上午 */ public interface UserBadgeService { /** * @Description 查询已经点亮的徽章 * @Param userBadgeListFormDTO * @author zxc * @date 2020/11/3 1:33 下午 */ List selectBadgeList(UserBadgeListFormDTO userBadgeListFormDTO); /** * @Description 个人中心-获取徽章可操作列表(点亮,取消,认证) * @Param userOperListFormDTO * @author zxc * @date 2020/11/3 4:42 下午 */ List selectOperList(UserOperListFormDTO userOperListFormDTO); }