fix: 修复3处问题

1. AreaConvert缺少两个方法导致编译报缺少转换函数
2. 修复SocialUserBindReqVO.java在因为lombok和mapstruct的问题,导致报未知属性的问题
3. 修复Bpm报缺少AsyncTaskExecutor的问题
This commit is contained in:
kyle
2024-01-16 11:09:02 +08:00
parent 9819e05d4e
commit 5ae1d0ab3e
3 changed files with 13 additions and 2 deletions

View File

@ -31,4 +31,7 @@ public class SocialUserBindReqVO {
@NotEmpty(message = "state 不能为空")
private String state;
public Integer getType() {
return type;
}
}

View File

@ -17,4 +17,12 @@ public interface AreaConvert {
List<AppAreaNodeRespVO> convertList3(List<Area> list);
/**
* 缺少单个转换
* @param value
* @return
*/
AreaNodeRespVO map(Area value);
AppAreaNodeRespVO map3(Area value);
}