From 36ba86ab732ffca44b8a3a39de828fc1c0593d95 Mon Sep 17 00:00:00 2001 From: xushunjie Date: Mon, 25 Aug 2025 18:18:14 +0800 Subject: [PATCH] update annotation Signed-off-by: xushunjie --- arkui/ace_engine/native/native_node.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index 788f8045470..205ace7a090 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -4305,10 +4305,10 @@ typedef enum { * This attribute can be set, reset, and obtained as required through APIs. * * Format of the {@link ArkUI_AttributeItem} parameter for setting the attribute:\n - * .string: time. The default value is the current system time. \n + * .string: time. The default value is the current system time. Format: Only hour and minute input is supported (e.g. 23:59/23-59).\n * \n * Format of the return value {@link ArkUI_AttributeItem}:\n - * .string: time. + * .string: time. The default value is the current system time. Format: hours, minutes, seconds (e.g. 23,59,1). * */ @@ -4402,10 +4402,10 @@ typedef enum { * This attribute can be set, reset, and obtained as required through APIs. * * Format of the {@link ArkUI_AttributeItem} parameter for setting the attribute:\n - * .string: time. The default value is "00:00:00".\n + * .string: time. The default value is "0:0:0". Format: Only hour and minute input is supported (e.g. 12:59/12-59).\n * \n * Format of the return value {@link ArkUI_AttributeItem}:\n - * .string: time. The default value is "00:00:00".\n + * .string: time. The default value is "0:0:0". Format: hours, minutes, seconds (e.g. 12:59:0)\n * * @since 18 */ @@ -4415,10 +4415,10 @@ typedef enum { * This attribute can be set, reset, and obtained as required through APIs. * * Format of the {@link ArkUI_AttributeItem} parameter for setting the attribute:\n - * .string: time. The default value is "23:59:59".\n + * .string: time. The default value is "23:59:59". Format: Only hour and minute input is supported (e.g. 23:59/23-59).\n * \n * Format of the return value {@link ArkUI_AttributeItem}:\n - * .string: time. The default value is "23:59:59".\n + * .string: time. The default value is "23:59:59". Format: hours, minutes, seconds (e.g. 23:59:0)\n * * @since 18 */ -- Gitee