| Línea 13... |
Línea 13... |
| 13 |
public interface UserLogDao {
|
13 |
public interface UserLogDao {
|
| Línea 14... |
Línea 14... |
| 14 |
|
14 |
|
| 15 |
@Query("SELECT * FROM tb_user_logs ORDER BY added_on DESC, id DESC")
|
15 |
@Query("SELECT * FROM tb_user_logs ORDER BY added_on DESC, id DESC")
|
| Línea -... |
Línea 16... |
| - |
|
16 |
List<UserLog> selectAll();
|
| - |
|
17 |
|
| - |
|
18 |
@Query("SELECT * FROM tb_user_logs WHERE user_uuid = :userUuid ORDER BY added_on DESC, id DESC")
|
| 16 |
List<UserLog> selectAll();
|
19 |
List<UserLog> selectAllByUserUuid(String userUuid);
|
| 17 |
|
20 |
|
| Línea 18... |
Línea 21... |
| 18 |
@Query("SELECT * FROM tb_user_logs WHERE user_uuid = :userUuid AND activity = :activity AND added_on = :addedOn")
|
21 |
@Query("SELECT * FROM tb_user_logs WHERE user_uuid = :userUuid AND activity = :activity AND added_on = :addedOn")
|
| 19 |
UserLog selectOneByUserUuidAndActivityAndAddedOn(String userUuid, String activity, String addedOn);
|
22 |
UserLog selectOneByUserUuidAndActivityAndAddedOn(String userUuid, String activity, String addedOn);
|