|
@@ -268,4 +268,15 @@ public class StaffController {
|
|
|
public ResponseResultVO<?> deleteGhostStaff(@RequestBody StaffVO staffVO) {
|
|
public ResponseResultVO<?> deleteGhostStaff(@RequestBody StaffVO staffVO) {
|
|
|
return staffService.deleteGhostStaff(staffVO);
|
|
return staffService.deleteGhostStaff(staffVO);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @desc : 更新负责人标识
|
|
|
|
|
+ * @author : 刘尧
|
|
|
|
|
+ * @date : 2024/6/21 16:24
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperation(value = "更新负责人标识", notes = "更新负责人标识")
|
|
|
|
|
+ @PostMapping({"update_flgInit"})
|
|
|
|
|
+ public ResponseResultVO updateFlgInit(@RequestBody Map<String, Object> params){
|
|
|
|
|
+ return staffService.updateFlgInit(params);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|