QHSELoginService.java 369 B

12345678910111213141516
  1. package com.rongwei.bscommon.system.service;
  2. import com.rongwei.rwadmincommon.system.domain.UserLoginVo;
  3. import com.rongwei.rwcommon.base.R;
  4. import javax.servlet.http.HttpServletRequest;
  5. /**
  6. * QHSELoginService class
  7. *
  8. * @author XH
  9. * @date 2025/08/22
  10. */
  11. public interface QHSELoginService {
  12. R sendSmsCode(UserLoginVo userLogin, HttpServletRequest request);
  13. }