|
@@ -0,0 +1,18 @@
|
|
|
+package com.ruoyi.common.config.Bpm.config;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author hmc
|
|
|
+ * @date 2023-11-02 18:07
|
|
|
+ * @Description:
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@Configuration
|
|
|
+@ConfigurationProperties("parameter.ip")
|
|
|
+public class BpmProperties {
|
|
|
+ //根据用户id查询当前用户所具备的角色key的ip地址 MAIN_ROLESKEY_IP
|
|
|
+ private String mainRolesKeyIp;
|
|
|
+}
|