guoyuji
2024-03-06 94a4338bc10d9431dcd9c93dcc8b97d6c08f09b2
north-glass-erp/src/main/java/com/example/erp/controller/sd/BasicDataController.java
@@ -20,4 +20,8 @@
    public Result getBasicDataByType(@PathVariable String type){
        return Result.seccess(basicDateService.getBasicDataByType(type));
    }
    @GetMapping("/BasicDataByType/{type}/{childType}")
    public Result getBasicDataByTypeAndChildType(@PathVariable String type,@PathVariable String childType){
        return Result.seccess(basicDateService.getBasicDataByTypeAndChildType(type,childType));
    }
}