自动化立体仓库 - WMS系统
zyx
2024-04-07 012f80529db9aa5065f51bde3fd65ff1ffe9eb61
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) {