节点验证
This commit is contained in:
parent
d44256638a
commit
447d318454
@ -85,8 +85,9 @@ public class SaasFeatureApplyDetailServiceImpl implements SaasFeatureApplyDetail
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public void updateApplyDetail(PermissionPointApplyDetailUpdateReq req) {
|
||||
SaasFeatureApplyDetail detail = BeanMapper.copyBean(req, SaasFeatureApplyDetail.class, (p, s) -> {
|
||||
s.setFitOuTypeBit(JSON.toJSONString(p.getFitOuTypeList()));
|
||||
s.setFitOuNodeTypeBit(JSON.toJSONString(p.getFitOuNodeTypeList()));
|
||||
s.setFitOuTypeBit(p.getFitOuTypeList() == null ? "" : JSON.toJSONString(p.getFitOuTypeList()));
|
||||
s.setFitOuNodeTypeBit(
|
||||
p.getFitOuNodeTypeList() == null ? "" : JSON.toJSONString(p.getFitOuNodeTypeList()));
|
||||
});
|
||||
this.saveOrUpdate(Lists.newArrayList(detail));
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user