INavServiceSMO.java 571 B

12345678910111213141516171819202122232425262728293031
  1. package com.java110.boot.smo;
  2. import com.java110.core.context.IPageData;
  3. import org.springframework.http.ResponseEntity;
  4. /**
  5. * 当行栏组件
  6. * Created by Administrator on 2019/4/1.
  7. */
  8. public interface INavServiceSMO {
  9. /**
  10. * 用户退出
  11. *
  12. * @param pd 页面封装数据
  13. * @return ResponseEntity对象
  14. */
  15. ResponseEntity<String> doExit(IPageData pd);
  16. /**
  17. * 获取用户信息
  18. *
  19. * @param pd 页面封装数据
  20. * @return ResponseEntity对象
  21. */
  22. ResponseEntity<String> getUserInfo(IPageData pd);
  23. }