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.
19 lines
403 B
19 lines
403 B
package com.epmet.service;
|
|
|
|
import com.epmet.dto.form.GovWebLoginFormDTO;
|
|
import com.epmet.dto.result.UserTokenResultDTO;
|
|
|
|
/**
|
|
* @Description 第三方-居民端、政府端登陆服务
|
|
* @author sun
|
|
*/
|
|
public interface GovWebService {
|
|
|
|
/**
|
|
* @param formDTO
|
|
* @return
|
|
* @Author sun
|
|
* @Description PC工作端-工作人员登录
|
|
**/
|
|
UserTokenResultDTO login(GovWebLoginFormDTO formDTO);
|
|
}
|
|
|