自动化立体仓库 - WMS系统
#
vincent
2020-05-25 0c3caf5265e7dda3543d138d552fef7592ccde41
src/main/java/com/zy/asrs/controller/WrkMastLogController.java
@@ -67,14 +67,14 @@
    }
    @RequestMapping(value = "/wrkMastLog/add/auth")
    @ManagerAuth
    @ManagerAuth(memo = "工作历史档添加")
    public R add(WrkMastLog wrkMastLog) {
        wrkMastLogService.insert(wrkMastLog);
        return R.ok();
    }
   @RequestMapping(value = "/wrkMastLog/update/auth")
   @ManagerAuth
   @ManagerAuth(memo = "工作历史档修改")
    public R update(WrkMastLog wrkMastLog){
        if (Cools.isEmpty(wrkMastLog) || null==wrkMastLog.getId()){
            return R.error();
@@ -84,7 +84,7 @@
    }
    @RequestMapping(value = "/wrkMastLog/delete/auth")
    @ManagerAuth
    @ManagerAuth(memo = "工作历史档删除")
    public R delete(@RequestParam String param){
        List<WrkMastLog> list = JSONArray.parseArray(param, WrkMastLog.class);
        if (Cools.isEmpty(list)){
@@ -97,7 +97,7 @@
    }
    @RequestMapping(value = "/wrkMastLog/export/auth")
    @ManagerAuth
    @ManagerAuth(memo = "工作历史档导出")
    public R export(@RequestBody JSONObject param){
        List<String> fields = JSONObject.parseArray(param.getJSONArray("fields").toJSONString(), String.class);
        EntityWrapper<WrkMastLog> wrapper = new EntityWrapper<>();