自动化立体仓库 - WMS系统
#
zyx
2024-04-23 c7bf4b8773f888fd5be613b7bb6fb8ae4a47b028
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) {