Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 5432 |
amar.kumar |
1 |
package in.shop2020.user.persistence;
|
|
|
2 |
|
|
|
3 |
import in.shop2020.user.domain.UserNote;
|
|
|
4 |
|
|
|
5 |
import java.util.List;
|
|
|
6 |
|
|
|
7 |
import org.apache.ibatis.annotations.Param;
|
|
|
8 |
|
|
|
9 |
public interface MiscellaneousMapper {
|
|
|
10 |
|
|
|
11 |
List<UserNote> getUserNotes(@Param("user_id") long user_id, @Param("entity_id")long entity_id);
|
|
|
12 |
|
|
|
13 |
void insertUserNote(UserNote note);
|
|
|
14 |
|
|
|
15 |
void updateUserNote(@Param("user_id") long user_id, @Param("entity_id") long entity_id, @Param("note")String note);
|
|
|
16 |
}
|