mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-01-18 18:33:16 +00:00
TagDao: Insert, Update, Delete実装
This commit is contained in:
parent
8f118b7067
commit
2ab8999638
|
@ -1,7 +1,10 @@
|
|||
package one.nem.lacerta.source.database.dao;
|
||||
|
||||
import androidx.room.Dao;
|
||||
import androidx.room.Delete;
|
||||
import androidx.room.Insert;
|
||||
import androidx.room.Query;
|
||||
import androidx.room.Update;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
@ -10,6 +13,8 @@ import one.nem.lacerta.source.database.entity.Tag;
|
|||
@Dao
|
||||
public interface TagDao {
|
||||
|
||||
// Select
|
||||
|
||||
@Query("SELECT * FROM tag WHERE id = :id")
|
||||
Tag findById(String id);
|
||||
|
||||
|
@ -19,6 +24,37 @@ public interface TagDao {
|
|||
@Query("SELECT * FROM tag WHERE id IN (:ids)")
|
||||
List<Tag> findByIds(List<String> ids);
|
||||
|
||||
// WIP
|
||||
// TODO-rca: Insert, Update, Delete
|
||||
// Insert
|
||||
@Insert
|
||||
void insert(Tag tag);
|
||||
|
||||
@Insert
|
||||
void insertAll(Tag... tags);
|
||||
|
||||
@Insert
|
||||
void insertAll(List<Tag> tags);
|
||||
|
||||
// Update
|
||||
@Update
|
||||
void update(Tag tag);
|
||||
|
||||
@Update
|
||||
void updateAll(Tag... tags);
|
||||
|
||||
@Update
|
||||
void updateAll(List<Tag> tags);
|
||||
|
||||
// Delete
|
||||
@Delete
|
||||
void delete(Tag tag);
|
||||
|
||||
@Delete
|
||||
void deleteAll(Tag... tags);
|
||||
|
||||
@Delete
|
||||
void deleteAll(List<Tag> tags);
|
||||
|
||||
@Delete
|
||||
void deleteById(String id);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user