Files
smartDriveEE/src/main/java/com/rj/controller/QweiDepartmentController.java
2026-04-24 20:54:14 +08:00

87 lines
3.4 KiB
Java

package com.rj.controller;
import com.rj.entity.QweiDepartment;
import com.rj.service.IQweiDepartmentService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.Map;
@RestController
@RequestMapping("/api/qweiDepartment")
@Tag(name = "企微部门", description = "qwei_department增删改查与分页")
public class QweiDepartmentController {
@Autowired
private IQweiDepartmentService qweiDepartmentService;
@PostMapping("/add")
@Operation(summary = "新增")
public ResponseEntity<Map<String, Object>> add(
@Parameter(description = "实体", required = true) @RequestBody QweiDepartment entity) {
Map<String, Object> result = qweiDepartmentService.add(entity);
Boolean success = (Boolean) result.get("success");
if (success != null && success) {
return ResponseEntity.ok(result);
}
return ResponseEntity.badRequest().body(result);
}
@PutMapping("/update")
@Operation(summary = "更新")
public ResponseEntity<Map<String, Object>> update(
@Parameter(description = "实体", required = true) @RequestBody QweiDepartment entity) {
Map<String, Object> result = qweiDepartmentService.update(entity);
Boolean success = (Boolean) result.get("success");
if (success != null && success) {
return ResponseEntity.ok(result);
}
return ResponseEntity.badRequest().body(result);
}
@DeleteMapping("/delete/{id}")
@Operation(summary = "删除")
public ResponseEntity<Map<String, Object>> delete(
@Parameter(description = "主键ID(UUID)", required = true) @PathVariable String id) {
Map<String, Object> result = qweiDepartmentService.deleteById(id);
Boolean success = (Boolean) result.get("success");
if (success != null && success) {
return ResponseEntity.ok(result);
}
return ResponseEntity.badRequest().body(result);
}
@GetMapping("/list")
@Operation(summary = "分页查询")
public ResponseEntity<Map<String, Object>> list(
@RequestParam(defaultValue = "1") Integer current,
@RequestParam(defaultValue = "10") Integer size,
@RequestParam(required = false) Long deptId,
@RequestParam(required = false) String deptName,
@RequestParam(required = false) Long parentDeptId) {
Map<String, Object> result = qweiDepartmentService.pageQuery(current, size, deptId, deptName, parentDeptId);
Boolean success = (Boolean) result.get("success");
if (success != null && success) {
return ResponseEntity.ok(result);
}
return ResponseEntity.internalServerError().body(result);
}
@PostMapping("/sync")
@Operation(summary = "同步企微部门并入库")
public ResponseEntity<Map<String, Object>> sync(
@RequestParam(required = false) String tenantId) {
Map<String, Object> result = qweiDepartmentService.syncFromQiWei(tenantId);
Boolean success = (Boolean) result.get("success");
if (success != null && success) {
return ResponseEntity.ok(result);
}
return ResponseEntity.badRequest().body(result);
}
}