@@ -21,7 +21,7 @@ public class AuthCodeProps { | |||||
/** | /** | ||||
* authCode失效时间(单位:秒) | * authCode失效时间(单位:秒) | ||||
*/ | */ | ||||
private Integer expireTime = 10; | |||||
private Integer expireTime = 5; | |||||
/** | /** | ||||
* authCode长度(最大:24~32) | * authCode长度(最大:24~32) | ||||
@@ -15,22 +15,41 @@ import lombok.Data; | |||||
@Builder | @Builder | ||||
public class MhTodoExtraParamDTO { | public class MhTodoExtraParamDTO { | ||||
/** | |||||
* 用户ID | |||||
*/ | |||||
private Long userId; | private Long userId; | ||||
/** | |||||
* 用户名 | |||||
*/ | |||||
private String userName; | private String userName; | ||||
/** | |||||
* 流程实例ID | |||||
*/ | |||||
private String instanceId; | private String instanceId; | ||||
/** | |||||
* 项目编码 | |||||
*/ | |||||
private String projectCode; | private String projectCode; | ||||
/** | |||||
* 项目ID | |||||
*/ | |||||
private Long projectId; | private Long projectId; | ||||
/** | |||||
* 任务ID | |||||
*/ | |||||
private String taskId; | private String taskId; | ||||
/** | |||||
* 标段ID | |||||
*/ | |||||
private Long bidId; | private Long bidId; | ||||
/** | |||||
* 任务节点ID | |||||
*/ | |||||
private String nodeId; | private String nodeId; | ||||
/** | |||||
* 跳转页面路径 | |||||
*/ | |||||
private String path; | private String path; | ||||
} | } |
@@ -19,7 +19,7 @@ security: | |||||
- /api/v1/user/auth/login/password | - /api/v1/user/auth/login/password | ||||
- /api/v1/user/auth/forget-password | - /api/v1/user/auth/forget-password | ||||
- /api/v1/user/auth/common-login | - /api/v1/user/auth/common-login | ||||
- /api/v1/user/auth/common-login | |||||
- /api/v1/user/auth/getAuthCode | |||||
- /doc.html | - /doc.html | ||||
- /ok.html | - /ok.html | ||||
- /open/api/** | - /open/api/** | ||||
@@ -19,6 +19,7 @@ security: | |||||
- /api/v1/user/auth/login/password | - /api/v1/user/auth/login/password | ||||
- /api/v1/user/auth/forget-password | - /api/v1/user/auth/forget-password | ||||
- /api/v1/user/auth/common-login | - /api/v1/user/auth/common-login | ||||
- /api/v1/user/auth/getAuthCode | |||||
- /doc.html | - /doc.html | ||||
- /ok.html | - /ok.html | ||||
- /open/api/** | - /open/api/** | ||||