Files
aos-file-personal/src/main/java/com/aos/fileidentify/service/EmployeeService.java
T
2022-07-07 11:46:15 +08:00

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();
}