Helius
2020-05-27 b9333be7a664c3ea113dd789b7c8be735840a361
src/main/java/com/xcong/excoin/modules/member/service/MemberService.java
@@ -1,11 +1,25 @@
package com.xcong.excoin.modules.member.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.modules.member.entity.MemberEntity;
import com.xcong.excoin.modules.test.entity.TestUserEntity;
/**
 * @author wzy
 */
public interface MemberService extends IService<MemberEntity> {
}
package com.xcong.excoin.modules.member.service;
import javax.validation.Valid;
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.common.system.dto.RegisterDto;
import com.xcong.excoin.modules.member.entity.MemberEntity;
import com.xcong.excoin.modules.member.parameter.dto.MemberAuthenticationDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberForgetPwdDto;
/**
 * @author wzy
 */
public interface MemberService extends IService<MemberEntity> {
    public Result register(RegisterDto registerDto);
   public Result getMemberInfo();
   public Result memberAuthentication(@Valid MemberAuthenticationDto memberAuthenticationDto);
   public Result memberForgetPwd(@Valid MemberForgetPwdDto memberForgetPwdDto);
}