自动化立体仓库 - WMS系统
ZY
2024-10-28 f59681e9cf7faedb6c28e23920c58ecb919be547
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) {