fix: 字段调整 application signatures ’negate_option‘-> 'negateOption'

This commit is contained in:
shizhendong
2024-11-15 16:26:01 +08:00
parent 6a4aa58d03
commit d8aed83e7b

View File

@@ -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();