mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-23 23:45:08 +08:00
fix: 修复3处问题
1. AreaConvert缺少两个方法导致编译报缺少转换函数 2. 修复SocialUserBindReqVO.java在因为lombok和mapstruct的问题,导致报未知属性的问题 3. 修复Bpm报缺少AsyncTaskExecutor的问题
This commit is contained in:
@ -31,4 +31,7 @@ public class SocialUserBindReqVO {
|
||||
@NotEmpty(message = "state 不能为空")
|
||||
private String state;
|
||||
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
}
|
||||
|
@ -17,4 +17,12 @@ public interface AreaConvert {
|
||||
|
||||
List<AppAreaNodeRespVO> convertList3(List<Area> list);
|
||||
|
||||
/**
|
||||
* 缺少单个转换
|
||||
* @param value
|
||||
* @return
|
||||
*/
|
||||
AreaNodeRespVO map(Area value);
|
||||
|
||||
AppAreaNodeRespVO map3(Area value);
|
||||
}
|
||||
|
Reference in New Issue
Block a user