UserService.java 296 字节
Newer Older
M
Auth2.0  
ManongJu 已提交
1 2 3 4 5 6 7 8 9 10 11 12
package com.microservice.skeleton.auth.service;

import com.microservice.skeleton.auth.entity.RcUserEntity;

/**
 * Created by Mr.Yangxiufeng on 2017/12/27.
 * Time:15:12
 * ProjectName:Mirco-Service-Skeleton
 */
public interface UserService {
    RcUserEntity findByUsername(String username);
}