启用禁用员工账号

This commit is contained in:
slhaf
2024-09-10 12:49:38 +08:00
parent 6f40e3c2f2
commit 46491d98a7
5 changed files with 57 additions and 0 deletions

View File

@@ -32,4 +32,10 @@ public interface EmployeeMapper {
* @return
*/
Page<Employee> pageQuery(EmployeePageQueryDTO employeePageQueryDTO);
/**
* 根据主键动态修改属性
* @param employee
*/
void update(Employee employee);
}