| Line 27... |
Line 27... |
| 27 |
public Long selectAllCount();
|
27 |
public Long selectAllCount();
|
| 28 |
public List<Ticket> selectAllNotClosedTickets();
|
28 |
public List<Ticket> selectAllNotClosedTickets();
|
| 29 |
public List<Ticket> selectAllByAssignee(int assigneeId,Optional<Boolean> resolved,SortOrder sortOrder,int offset,int limit);
|
29 |
public List<Ticket> selectAllByAssignee(int assigneeId,Optional<Boolean> resolved,SortOrder sortOrder,int offset,int limit);
|
| 30 |
public List<Ticket> selectAllByTicketIds(List<Integer> ticketIds);
|
30 |
public List<Ticket> selectAllByTicketIds(List<Integer> ticketIds);
|
| 31 |
public long selectAllCountByAssignee(int assigneeId,Optional<Boolean> resolved);
|
31 |
public long selectAllCountByAssignee(int assigneeId,Optional<Boolean> resolved);
|
| 32 |
public List<Ticket> selectAllManagerTicket(int authUserId, SortOrder sortOrder,Optional<Boolean> resolved, int offset, int limit);
|
32 |
public List<Ticket> selectAllManagerTicket(int authUserId, SortOrder sortOrder,Optional<Boolean> resolved,TicketSearchType ticketSearchType,int searchTerm,int offset, int limit);
|
| 33 |
public long selectAllCountByManagerTicket(int authUserId,Optional<Boolean> resolved);
|
33 |
public long selectAllCountByManagerTicket(int authUserId,Optional<Boolean> resolved,TicketSearchType ticketSearchType, int searchTerm);
|
| 34 |
}
|
34 |
}
|
| 35 |
|
35 |
|