10fbfc30aSopenharmony_ci/**
20fbfc30aSopenharmony_ci * @file Describe the file
30fbfc30aSopenharmony_ci * Copyright (c) 2023 Huawei Device Co., Ltd.
40fbfc30aSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
50fbfc30aSopenharmony_ci * you may not use this file except in compliance with the License.
60fbfc30aSopenharmony_ci * You may obtain a copy of the License at
70fbfc30aSopenharmony_ci *
80fbfc30aSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
90fbfc30aSopenharmony_ci *
100fbfc30aSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
110fbfc30aSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
120fbfc30aSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
130fbfc30aSopenharmony_ci * See the License for the specific language governing permissions and
140fbfc30aSopenharmony_ci * limitations under the License.
150fbfc30aSopenharmony_ci */
160fbfc30aSopenharmony_ci
170fbfc30aSopenharmony_ciinterface extendCalendarEventColumnsType {
180fbfc30aSopenharmony_ci  TABLE_NAME: string,
190fbfc30aSopenharmony_ci  ID: string,
200fbfc30aSopenharmony_ci  HWEXT_EVENT_ID: string,
210fbfc30aSopenharmony_ci  HWEXT_TYPE: string,
220fbfc30aSopenharmony_ci  HWEXT_APP_URI: string,
230fbfc30aSopenharmony_ci  HWEXT_APP_NAME: string,
240fbfc30aSopenharmony_ci  HWEXT_ACTION: string,
250fbfc30aSopenharmony_ci  HWEXT_METHOD: string,
260fbfc30aSopenharmony_ci  HWEXT_SUPPORT_MIN_VERSION: string,
270fbfc30aSopenharmony_ci  HWEXT_STATUS: string,
280fbfc30aSopenharmony_ci  HWEXT_DESCRIPTION: string,
290fbfc30aSopenharmony_ci}
300fbfc30aSopenharmony_ci
310fbfc30aSopenharmony_ci/**
320fbfc30aSopenharmony_ci * the const of table ExtendCalendarEvent
330fbfc30aSopenharmony_ci *
340fbfc30aSopenharmony_ci * @since 2022-09-08
350fbfc30aSopenharmony_ci */
360fbfc30aSopenharmony_ciexport const ExtendCalendarEventColumns: extendCalendarEventColumnsType = {
370fbfc30aSopenharmony_ci  TABLE_NAME: 'ExtendCalendarEvent',
380fbfc30aSopenharmony_ci  ID: 'id',
390fbfc30aSopenharmony_ci  HWEXT_EVENT_ID: 'hwext_event_id',
400fbfc30aSopenharmony_ci  HWEXT_TYPE: 'hwext_type',
410fbfc30aSopenharmony_ci  HWEXT_APP_URI: 'hwext_app_uri',
420fbfc30aSopenharmony_ci  HWEXT_APP_NAME: 'hwext_app_name',
430fbfc30aSopenharmony_ci  HWEXT_ACTION: 'hwext_action',
440fbfc30aSopenharmony_ci  HWEXT_METHOD: 'hwext_method',
450fbfc30aSopenharmony_ci  HWEXT_SUPPORT_MIN_VERSION: 'hwext_support_min_version',
460fbfc30aSopenharmony_ci  HWEXT_STATUS: 'hwext_status',
470fbfc30aSopenharmony_ci  HWEXT_DESCRIPTION: 'hwext_description',
480fbfc30aSopenharmony_ci}