27 lines
555 B
Java
27 lines
555 B
Java
package com.aos.fileidentify.service;
|
|
|
|
import com.aos.fileidentify.common.ResultDTO;
|
|
import com.aos.fileidentify.entity.Employee;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>Company: 成都返空汇网络技术有限公司</p>
|
|
* <p>Description: </p>
|
|
*
|
|
* @author yangjiyu
|
|
* @version x.x.x
|
|
* @email "mailto:yangjiyu@fkhwl.com"
|
|
* @date 2022.07.06 12:47
|
|
* @since x.x.x
|
|
*/
|
|
public interface EmployeeService {
|
|
/**
|
|
* Gets all employee *
|
|
*
|
|
* @return the all employee
|
|
* @since 0.0.1
|
|
*/
|
|
ResultDTO<List<Employee>> getAllEmployee();
|
|
}
|