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.
20 lines
527 B
20 lines
527 B
package com.epmet.service;
|
|
|
|
import com.epmet.commons.mybatis.service.BaseService;
|
|
import com.epmet.commons.tools.utils.Result;
|
|
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> {
|
|
|
|
List<CertifiedResultDTO> selectUserHeadPhotoByUserId(List<CertifiedResultDTO> certifiedResultDTOS);
|
|
|
|
}
|
|
|