ILoginService.java 189 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 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); }