mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 05:12:07 +08:00
1、新增部门校验问题修复;2、自定义板编号跨单导入问题修复;
This commit is contained in:
+2
-2
@@ -38,10 +38,10 @@ public interface DeptApi {
|
||||
@Parameter(name = "ids", description = "部门编号数组", example = "1,2", required = true)
|
||||
CommonResult<Boolean> validateDeptList(@RequestParam("ids") Collection<Long> ids);
|
||||
|
||||
@GetMapping(PREFIX + "/valid/{deptId}")
|
||||
@GetMapping(PREFIX + "/legitimacy/{deptId}")
|
||||
@Operation(summary = "校验部门是否合法")
|
||||
@Parameter(name = "id", description = "部门编号", example = "1024", required = true)
|
||||
CommonResult<Boolean> validateDept(@PathVariable("id") Long deptId);
|
||||
CommonResult<Boolean> validateDept(@PathVariable("deptId") Long deptId);
|
||||
|
||||
/**
|
||||
* 获得指定编号的部门 Map
|
||||
|
||||
+2
-1
@@ -7,6 +7,7 @@ import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
|
||||
|
||||
/**
|
||||
@@ -26,5 +27,5 @@ public interface SystemConfigApi {
|
||||
|
||||
@GetMapping(PREFIX + "/organ/custom-plateno-config/{id}")
|
||||
@Operation(summary = "获取组织下自定义版编号配置")
|
||||
CommonResult<SystemConfigRespDTO> getById(Long id);
|
||||
CommonResult<SystemConfigRespDTO> getById(@PathVariable("id") Long id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user