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.

22 lines
484 B

5 years ago
package com.epmet.service;
import com.epmet.commons.tools.utils.Result;
import com.epmet.dto.form.SendSmsCodeFormDTO;
/**
* @Description 政府端登录
* @Author yinzuomei
* @Date 2020/4/18 10:32
*/
public interface GovLoginService {
/**
* @param formDTO
* @return com.epmet.commons.tools.utils.Result
* @Author yinzuomei
* @Description 登录-发送验证码
* @Date 2020/4/18 10:59
**/
Result sendSmsCode(SendSmsCodeFormDTO formDTO);
}