fix: 修复3处问题
1. AreaConvert缺少两个方法导致编译报缺少转换函数 2. 修复SocialUserBindReqVO.java在因为lombok和mapstruct的问题,导致报未知属性的问题 3. 修复Bpm报缺少AsyncTaskExecutor的问题
This commit is contained in:
parent
9819e05d4e
commit
5ae1d0ab3e
@ -17,8 +17,8 @@ public class YudaoFlowableConfiguration {
|
|||||||
*
|
*
|
||||||
* 如果不创建,会导致项目启动时,Flowable 报错的问题
|
* 如果不创建,会导致项目启动时,Flowable 报错的问题
|
||||||
*/
|
*/
|
||||||
@Bean
|
@Bean(name = "applicationTaskExecutor")
|
||||||
@ConditionalOnMissingBean
|
@ConditionalOnMissingBean(name = "applicationTaskExecutor")
|
||||||
public AsyncListenableTaskExecutor taskExecutor() {
|
public AsyncListenableTaskExecutor taskExecutor() {
|
||||||
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
|
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
|
||||||
executor.setCorePoolSize(8);
|
executor.setCorePoolSize(8);
|
||||||
|
@ -31,4 +31,7 @@ public class SocialUserBindReqVO {
|
|||||||
@NotEmpty(message = "state 不能为空")
|
@NotEmpty(message = "state 不能为空")
|
||||||
private String state;
|
private String state;
|
||||||
|
|
||||||
|
public Integer getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,4 +17,12 @@ public interface AreaConvert {
|
|||||||
|
|
||||||
List<AppAreaNodeRespVO> convertList3(List<Area> list);
|
List<AppAreaNodeRespVO> convertList3(List<Area> list);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 缺少单个转换
|
||||||
|
* @param value
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
AreaNodeRespVO map(Area value);
|
||||||
|
|
||||||
|
AppAreaNodeRespVO map3(Area value);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user