编辑员工信息添加注释

This commit is contained in:
Bunny 2024-01-10 08:41:42 +08:00
parent 2089cf6b07
commit ec49bba3b3
1 changed files with 6 additions and 0 deletions

View File

@ -131,6 +131,12 @@ public class EmployeeController {
return Result.success(employee);
}
/**
* 编辑员工信息
*
* @param employeeDTO EmployeeDTO
* @return 正常返回
*/
@ApiOperation(value = "编辑员工信息")
@PutMapping()
public Result<String> update(@RequestBody EmployeeDTO employeeDTO) {