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.
 
 
 
 
 

24 lines
585 B

package com.epmet.service;
import com.epmet.commons.mybatis.service.BaseService;
import com.epmet.dto.result.CertifiedResultDTO;
import com.epmet.entity.UserWechatEntity;
import java.util.List;
/**
* @Description
* @IntefaceName UserWechatService
* @Author wangc
* @date 2020.03.28 14:35
*/
public interface UserWechatService extends BaseService<UserWechatEntity> {
/**
* @Description 获取头像
* @param certifiedResultDTOS
* @author zxc
*/
List<CertifiedResultDTO> selectUserHeadPhotoByUserId(List<CertifiedResultDTO> certifiedResultDTOS);
}