-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31d11f9
commit f0a5e98
Showing
23 changed files
with
706 additions
and
403 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
package com.example.umc_6th | ||
|
||
import androidx.room.Entity | ||
import androidx.room.PrimaryKey | ||
import java.util.ArrayList | ||
|
||
@Entity(tableName = "AlbumTable") | ||
data class Album( | ||
var title : String? = "", | ||
var singer : String? = "", | ||
var coverImage : Int? = null, | ||
var songs: ArrayList<Song>? = null // 앨범 수록곡 | ||
@PrimaryKey(autoGenerate = false) | ||
var id: Int = 0, | ||
var title: String? = "", | ||
var singer: String? = "", | ||
var coverImg: Int? = null | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
UMC_6th/app/src/main/java/com/example/umc_6th/AlbumVPAdpter.kt
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
UMC_6th/app/src/main/java/com/example/umc_6th/CommunicationInterface.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.