自动化立体仓库 - WMS系统
#
vincent
2020-05-25 0c3caf5265e7dda3543d138d552fef7592ccde41
src/main/java/com/zy/asrs/controller/BasLocTypeController.java
@@ -71,7 +71,7 @@
    }
    @RequestMapping(value = "/basLocType/add/auth")
    @ManagerAuth
    @ManagerAuth(memo = "库位状态添加")
    public R add(BasLocType basLocType) {
        basLocType.setModiUser(getUserId());
        basLocType.setModiTime(new Date());
@@ -82,7 +82,7 @@
    }
   @RequestMapping(value = "/basLocType/update/auth")
    @ManagerAuth
    @ManagerAuth(memo = "库位状态修改")
    public R update(BasLocType basLocType){
        if (Cools.isEmpty(basLocType) || null==basLocType.getLocSts()){
            return R.error();
@@ -94,7 +94,7 @@
    }
    @RequestMapping(value = "/basLocType/delete/auth")
    @ManagerAuth
    @ManagerAuth(memo = "库位状态删除")
    public R delete(@RequestParam String param){
        List<BasLocType> list = JSONArray.parseArray(param, BasLocType.class);
        if (Cools.isEmpty(list)){
@@ -107,7 +107,7 @@
    }
    @RequestMapping(value = "/basLocType/export/auth")
    @ManagerAuth
    @ManagerAuth(memo = "库位状态导出")
    public R export(@RequestBody JSONObject param){
        List<String> fields = JSONObject.parseArray(param.getJSONArray("fields").toJSONString(), String.class);
        EntityWrapper<BasLocType> wrapper = new EntityWrapper<>();