• This project
    • Loading...
  • Sign in

fangyeqing / xkl-interface · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • xkl-interface
  • ..
  • service
  • ILoginService.java
  • ADD code for uspih
    786a0fd3
    by zhaoyue
    2017-02-18 16:28:07 +0800  
    Browse Files
ILoginService.java 230 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
package com.xkl.service;

import com.xkl.domain.User;

/**
 * Created by win7 on 2016/12/18.
 */
public interface ILoginService {
    public User check(String username, String password);
    public User check(String username);

}