1 2 /* 3 * Copyright (C) 2024-2024 Huawei Device Co., Ltd. 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef FRAMEWORKS_SERVICES_MEDIA_MULTI_STAGES_CAPTURE_INCLUDE_USER_PHOTOGRAPHY_INFO_COLUMN_H 18 #define FRAMEWORKS_SERVICES_MEDIA_MULTI_STAGES_CAPTURE_INCLUDE_USER_PHOTOGRAPHY_INFO_COLUMN_H 19 20 #include <string> 21 22 namespace OHOS { 23 namespace Media { 24 // user photography info table name 25 const std::string USER_PHOTOGRAPHY_INFO_TABLE = "tab_user_photography_info"; 26 27 // create user photography info table 28 const std::string AVERAGE_AESTHETICS_SCORE = "average_aesthetics_score"; 29 const std::string CAPTURE_AESTHETICS_SCORE = "capture_aesthetics_score"; 30 const std::string AVERAGE_AESTHETICS_COUNT = "average_aesthetics_count"; 31 const std::string CAPTURE_AESTHETICS_COUNT = "capture_aesthetics_count"; 32 const std::string CALCULATE_TIME_START = "calculate_time_start"; 33 const std::string CALCULATE_TIME_END = "calculate_time_end"; 34 35 const std::string URI_USER_PHOTOGRAPHY_INFO = MEDIALIBRARY_DATA_URI + "/" + USER_PHOTOGRAPHY_INFO_TABLE; 36 } // namespace Media 37 } // namespace OHOS 38 #endif // FRAMEWORKS_SERVICES_MEDIA_MULTI_STAGES_CAPTURE_INCLUDE_USER_PHOTOGRAPHY_INFO_COLUMN_H