forked from rongchao/epmet-cloud-rizhao
1 changed files with 26 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||
package com.epmet.service; |
|||
|
|||
import com.epmet.commons.tools.security.dto.TokenDto; |
|||
import com.epmet.commons.tools.utils.Result; |
|||
import com.epmet.dto.form.UserEnterGridFormDTO; |
|||
import com.epmet.dto.result.UserInfoOnEnterGridResultDTO; |
|||
|
|||
/** |
|||
* @Description |
|||
* @IntefaceName UserAccessService |
|||
* @Author wangc |
|||
* @date 2020.03.30 14:02 |
|||
*/ |
|||
public interface UserAccessService { |
|||
|
|||
/** |
|||
* @Description 居民端用户在点击网格链接进入网格之前进行的一系列身份校验与统计 |
|||
* @Param tokenDto 用户个人信息 |
|||
* @Param formDTO |
|||
* @return UserInfoOnEnterGridResultDTO |
|||
* @Author wangc |
|||
* @Date 2020.03.30 13:51 |
|||
**/ |
|||
Result<UserInfoOnEnterGridResultDTO> enterGrid(TokenDto tokenDto, UserEnterGridFormDTO formDTO); |
|||
|
|||
} |
Loading…
Reference in new issue