Commit d1bcdd67 by guojuxing

添加一个接口,根据手机号码和商户查询用户

parent 5228d1f1
......@@ -57,6 +57,17 @@ public interface UserApiService {
ServiceResponse<List<UserDTO>> listUserByPhoneNumber(String phoneNumber);
/**
* 手机号和企业查询用户
* @Title: listUserByPhoneNumber

* @Description:

 * @author guojuxing
* @param phoneNumber
* @param enterpriseId

* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.auth.dto.UserDTO>>


 */
ServiceResponse<UserDTO> listUserByPhoneNumber(String phoneNumber, Integer enterpriseId);
ServiceResponse<UserDTO> login(String phoneNumber, Integer enterpriseId, String password);
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment