Skip to content

Commit

Permalink
correct code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyBit64 committed Dec 12, 2024
1 parent 3f26ec2 commit d2d95cb
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ default MapperResult detailUpdatedConfigHistory(MapperContext context) {
"SELECT nid,data_id,group_id,tenant_id,app_name,content,md5,src_user,src_ip,op_type,publish_type,ext_info,gmt_create"
+ ",gmt_modified,encrypted_data_key FROM his_config_info WHERE nid = (SELECT min(nid) FROM his_config_info "
+ "WHERE nid > ? AND id = (SELECT id FROM his_config_info WHERE nid = ?))",
Collections.unmodifiableList(Arrays.asList(context.getWhereParameter(FieldConstant.NID), context.getWhereParameter(FieldConstant.NID))));
Collections.unmodifiableList(
Arrays.asList(context.getWhereParameter(FieldConstant.NID), context.getWhereParameter(FieldConstant.NID))
)
);
}
}

0 comments on commit d2d95cb

Please sign in to comment.