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.
|
|
|
package com.epmet.service;
|
|
|
|
|
|
|
|
import com.epmet.commons.tools.utils.Result;
|
|
|
|
import com.epmet.dto.form.BadgeSendCodeFormDTO;
|
|
|
|
import com.epmet.dto.form.CertificationAddFormDTO;
|
|
|
|
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 org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
|
|
|
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<UserBadgeListResultDTO> selectBadgeList(UserBadgeListFormDTO userBadgeListFormDTO);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Description 个人中心-获取徽章可操作列表(点亮,取消,认证)
|
|
|
|
* @Param userOperListFormDTO
|
|
|
|
* @author zxc
|
|
|
|
* @date 2020/11/3 4:42 下午
|
|
|
|
*/
|
|
|
|
List<UserOperListResultDTO> selectOperList(UserOperListFormDTO userOperListFormDTO);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Description 个人中心-提交徽章认证
|
|
|
|
* @Param certificationAddFormDTO
|
|
|
|
* @author zxc
|
|
|
|
* @date 2020/11/4 1:36 下午
|
|
|
|
*/
|
|
|
|
Result authBadgeRecord(CertificationAddFormDTO certificationAddFormDTO);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Description 发送验证码
|
|
|
|
* @Param badgeSendCodeFormDTO
|
|
|
|
* @author zxc
|
|
|
|
* @date 2020/11/4 3:14 下午
|
|
|
|
*/
|
|
|
|
void badgeSendCode(BadgeSendCodeFormDTO badgeSendCodeFormDTO);
|
|
|
|
|
|
|
|
}
|