{"id":22309695,"url":"https://github.com/nesoy/api-point","last_synced_at":"2025-03-26T01:44:22.172Z","repository":{"id":108935962,"uuid":"178411603","full_name":"NESOY/api-point","owner":"NESOY","description":null,"archived":false,"fork":false,"pushed_at":"2019-04-08T14:09:58.000Z","size":103,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-30T23:18:57.888Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NESOY.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-29T13:35:22.000Z","updated_at":"2019-04-08T14:09:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"6835d1e7-41cb-42e9-b485-0c770341be00","html_url":"https://github.com/NESOY/api-point","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NESOY%2Fapi-point","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NESOY%2Fapi-point/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NESOY%2Fapi-point/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NESOY%2Fapi-point/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NESOY","download_url":"https://codeload.github.com/NESOY/api-point/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245573841,"owners_count":20637670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-03T20:44:22.830Z","updated_at":"2025-03-26T01:44:22.147Z","avatar_url":"https://github.com/NESOY.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# api-point\n\n## DDL\n### Review\n```sql\nCREATE TABLE `review` (\n  `id` varchar(255) NOT NULL,\n  `content` varchar(255) DEFAULT NULL,\n  `create_date_time` datetime NOT NULL,\n  `is_deleted` bit(1) DEFAULT NULL,\n  `update_date_time` datetime NOT NULL,\n  `place_id` varchar(255) DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `place_index` (`place_id`)\n)\n```\n\n### Point\n```sql\nCREATE TABLE `point` (\n  `id` bigint(20) NOT NULL AUTO_INCREMENT,\n  `create_date_time` datetime NOT NULL,\n  `update_date_time` datetime NOT NULL,\n  `value` bigint(20) DEFAULT NULL,\n  `review_id` varchar(255) DEFAULT NULL,\n  `user_id` varchar(255) DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `review_index` (`review_id`),\n  KEY `user_index` (`user_id`)\n)\n```\n\n### Point Log\n```sql\nCREATE TABLE `point_log` (\n  `id` bigint(20) NOT NULL AUTO_INCREMENT,\n  `log_time` datetime NOT NULL,\n  `point_type` int(11) NOT NULL,\n  `value` bigint(20) NOT NULL,\n  `point_id` bigint(20) DEFAULT NULL,\n  `review_id` varchar(255) DEFAULT NULL,\n  `user_id` varchar(255) DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `point_index` (`point_id`),\n  KEY `review_index` (`review_id`),\n  KEY `user_index` (`user_id`)\n)\n```\n\n### User\n```sql\nCREATE TABLE `user` (\n  `id` varchar(255) NOT NULL,\n  PRIMARY KEY (`id`)\n)\n```\n\n### Place\n```sql\nCREATE TABLE `place` (\n  `id` varchar(255) NOT NULL,\n  PRIMARY KEY (`id`)\n)\n```\n\n### Photo\n```sql\nCREATE TABLE `photo` (\n  `id` varchar(255) NOT NULL,\n  `review_id` varchar(255) DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `review_index` (`review_id`)\n)\n```\n## API\n- POST /events\n    - event 처리\n- POST /points\n    - points 조회\n    \n## Package\n```\njava/com/triple/point/\n├── PointApplication.java\n├── controller\n│   └── PointController.java\n├── domain\n│   ├── ActionType.java\n│   ├── EventType.java\n│   ├── Photo.java\n│   ├── Place.java\n│   ├── Point.java\n│   ├── PointLog.java\n│   ├── PointType.java\n│   ├── Review.java\n│   └── User.java\n├── dto\n│   ├── EventDto.java\n│   ├── EventResponseDto.java\n│   └── PointDto.java\n├── repository\n│   ├── PointLogRepository.java\n│   ├── PointRepository.java\n│   └── ReviewRepository.java\n└── service\n    └── PointService.java\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnesoy%2Fapi-point","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnesoy%2Fapi-point","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnesoy%2Fapi-point/lists"}