- package com.company.section2;
- import java.util.ArrayList;
- import com.company.section1.User;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- */
- public interface IUserProvider {
- //根据条件查找用户
- public ArrayList<User> findUser(boolean condition);
- }