fix: 字段调整 application signatures ’negate_option‘-> 'negateOption'
This commit is contained in:
@@ -210,7 +210,7 @@ public class TSG2402ApplicationServiceImpl implements ITSGApplicationService {
|
|||||||
|
|
||||||
or_condition_obj.put("source_object_ids", source_object_ids);
|
or_condition_obj.put("source_object_ids", source_object_ids);
|
||||||
Map<Object, Object> and_condition_item = T.MapUtil.builder()
|
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))
|
.put("or_conditions", T.ListUtil.of(or_condition_obj))
|
||||||
.build();
|
.build();
|
||||||
and_conditions.add(and_condition_item);
|
and_conditions.add(and_condition_item);
|
||||||
@@ -608,7 +608,7 @@ public class TSG2402ApplicationServiceImpl implements ITSGApplicationService {
|
|||||||
Map<Object, Object> m = T.MapUtil.builder()
|
Map<Object, Object> m = T.MapUtil.builder()
|
||||||
.put("attributeName", attribute_name)
|
.put("attributeName", attribute_name)
|
||||||
.put("attributeType", attribute_type)
|
.put("attributeType", attribute_type)
|
||||||
.put("negate_option", not_flag == 1 ? true : false)
|
.put("negateOption", not_flag == 1 ? true : false)
|
||||||
.put("description", "")
|
.put("description", "")
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user