自动化立体仓库 - WMS系统
zyx
2024-03-01 aa310a47a05110a393c508921c92fa17ea95b491
src/main/java/com/zy/asrs/controller/ConfigTypeController.java
@@ -46,7 +46,7 @@
    @RequestMapping(value = "/configType/add/auth")
    @ManagerAuth
    public R list(ConfigType configType){
    public R add(ConfigType configType){
        if (Cools.isEmpty(configType)){
            return R.error();
        }
@@ -56,6 +56,14 @@
    }
    @RequestMapping(value = "/configType/delete/auth")
    @ManagerAuth
    public R delete(Long id){
        configTypeService.deleteById(id);
        return R.ok();
    }
    @RequestMapping(value = "/configTypeQuery/auth")
    @ManagerAuth
    public R query(String condition) {