#
luxiaotao1123
2024-02-16 3b1672c22fe83d442e81092a6efac71b284cf4a7
zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/sys/controller/BaseController.java
@@ -1,8 +1,11 @@
package com.zy.asrs.wcs.sys.controller;
import com.zy.asrs.wcs.common.domain.BaseParam;
import com.zy.asrs.wcs.sys.entity.User;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;
import java.util.Map;
/**
 * Created by vincent on 1/30/2024
@@ -29,4 +32,8 @@
        return loginUser == null ? null : loginUser.getId();
    }
    public BaseParam getBaseParam(Map<String, Object> map) {
        return BaseParam.build(map);
    }
}