|
@@ -0,0 +1,58 @@
|
|
|
+package com.ruoyi.common.config.bpm;
|
|
|
+
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author hmc
|
|
|
+ * @date 2023-11-02 18:07
|
|
|
+ * @Description:
|
|
|
+ */
|
|
|
+@Configuration
|
|
|
+public class BpmProperties {
|
|
|
+ //根据用户id查询当前用户所具备的角色key的ip地址 MAIN_ROLESKEY_IP
|
|
|
+ @Value("${parameter.ip.MAIN_ROLESKEY_IP}")
|
|
|
+ public String mainRolesKeyIp;
|
|
|
+
|
|
|
+ /** 根据scriptKey获取节点脚本详情地址 */
|
|
|
+ @Value("${parameter.ip.GET_NODESCRIPT_IP}")
|
|
|
+ public String getNodeScriptIp;
|
|
|
+
|
|
|
+ @Value("${parameter.ip.QUERY_USER_EXISTS_BY_ROLEKEY_IP}")
|
|
|
+ public String queryUserExistsByRoleKeyIp;
|
|
|
+
|
|
|
+ @Value("${parameter.ip.QUERY_USER_EXISTS_BY_USERIDS_IP}")
|
|
|
+ public String queryUserExistsByUserIdsIp;
|
|
|
+
|
|
|
+ public String getMainRolesKeyIp() {
|
|
|
+ return mainRolesKeyIp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMainRolesKeyIp(String mainRolesKeyIp) {
|
|
|
+ this.mainRolesKeyIp = mainRolesKeyIp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGetNodeScriptIp(String getNodeScriptIp) {
|
|
|
+ this.getNodeScriptIp = getNodeScriptIp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGetNodeScriptIp() {
|
|
|
+ return getNodeScriptIp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getQueryUserExistsByRoleKeyIp() {
|
|
|
+ return queryUserExistsByRoleKeyIp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQueryUserExistsByRoleKeyIp(String queryUserExistsByRoleKeyIp) {
|
|
|
+ this.queryUserExistsByRoleKeyIp = queryUserExistsByRoleKeyIp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getQueryUserExistsByUserIdsIp() {
|
|
|
+ return queryUserExistsByUserIdsIp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQueryUserExistsByUserIdsIp(String queryUserExistsByUserIdsIp) {
|
|
|
+ this.queryUserExistsByUserIdsIp = queryUserExistsByUserIdsIp;
|
|
|
+ }
|
|
|
+}
|