11 lines
318 B
Java
11 lines
318 B
Java
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;
|
|
|
|
}
|