添加common下用户注册登录

This commit is contained in:
wuchunlei
2024-03-25 10:54:35 +08:00
parent 80a13f95ce
commit ed1a95aac0
4 changed files with 353 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
package com.peanut.modules.common.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.peanut.modules.common.entity.MyUserEntity;
public interface MyUserService extends IService<MyUserEntity> {
void sendCodeForRegister(String phone, String code,Integer areaCode) throws Exception;
}