自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-16 4ea00a26f7773e0ad27aeee512f34ff45fe0f18b
src/main/java/com/zy/asrs/controller/WrkLastnoController.java
@@ -57,7 +57,7 @@
    }
    @RequestMapping(value = "/wrkLastno/add/auth")
    @ManagerAuth
    @ManagerAuth(memo = "工作序号添加")
    public R add(WrkLastno wrkLastno) {
        wrkLastno.setModiUser(getUserId());
        wrkLastno.setModiTime(new Date());
@@ -68,7 +68,7 @@
    }
   @RequestMapping(value = "/wrkLastno/update/auth")
   @ManagerAuth
   @ManagerAuth(memo = "工作序号修改")
    public R update(WrkLastno wrkLastno){
        if (Cools.isEmpty(wrkLastno) || null==wrkLastno.getWrkMk()){
            return R.error();
@@ -80,7 +80,7 @@
    }
    @RequestMapping(value = "/wrkLastno/delete/auth")
    @ManagerAuth
    @ManagerAuth(memo = "工作序号删除")
    public R delete(@RequestParam String param){
        List<WrkLastno> list = JSONArray.parseArray(param, WrkLastno.class);
        if (Cools.isEmpty(list)){
@@ -93,7 +93,7 @@
    }
    @RequestMapping(value = "/wrkLastno/export/auth")
    @ManagerAuth
    @ManagerAuth(memo = "工作序号导出")
    public R export(@RequestBody JSONObject param){
        List<String> fields = JSONObject.parseArray(param.getJSONArray("fields").toJSONString(), String.class);
        EntityWrapper<WrkLastno> wrapper = new EntityWrapper<>();