diff options
| author | shizhendong <[email protected]> | 2024-11-15 16:26:01 +0800 |
|---|---|---|
| committer | shizhendong <[email protected]> | 2024-11-15 16:26:01 +0800 |
| commit | d8aed83e7b04cebf7fc806fd6752a22b4c71da03 (patch) | |
| tree | 1d083c28ef7125c8cf9cadce13db5b19d269515a | |
| parent | 6a4aa58d036e3966b6accb30b21c9ac1e67c3e0b (diff) | |
fix: 字段调整 application signatures ’negate_option‘-> 'negateOption'
| -rw-r--r-- | src/main/java/net/geedge/asw/module/app/service/impl/TSG2402ApplicationServiceImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/net/geedge/asw/module/app/service/impl/TSG2402ApplicationServiceImpl.java b/src/main/java/net/geedge/asw/module/app/service/impl/TSG2402ApplicationServiceImpl.java index 567b4a6..2c7a718 100644 --- a/src/main/java/net/geedge/asw/module/app/service/impl/TSG2402ApplicationServiceImpl.java +++ b/src/main/java/net/geedge/asw/module/app/service/impl/TSG2402ApplicationServiceImpl.java @@ -210,7 +210,7 @@ public class TSG2402ApplicationServiceImpl implements ITSGApplicationService { or_condition_obj.put("source_object_ids", source_object_ids); Map<Object, Object> and_condition_item = T.MapUtil.builder() - .put("not_flag", T.MapUtil.getBool(conditionJSONObj, "negate_option", false) ? 1 : 0) + .put("not_flag", T.MapUtil.getBool(conditionJSONObj, "negateOption", false) ? 1 : 0) .put("or_conditions", T.ListUtil.of(or_condition_obj)) .build(); and_conditions.add(and_condition_item); @@ -608,7 +608,7 @@ public class TSG2402ApplicationServiceImpl implements ITSGApplicationService { Map<Object, Object> m = T.MapUtil.builder() .put("attributeName", attribute_name) .put("attributeType", attribute_type) - .put("negate_option", not_flag == 1 ? true : false) + .put("negateOption", not_flag == 1 ? true : false) .put("description", "") .build(); |
