Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 325 | espaco | 1 | package br.com.ec.repository.jpa; |
| 2 | |||
| 3 | import org.springframework.stereotype.Repository; |
||
| 4 | |||
| 5 | import br.com.ec.domain.model.Papel; |
||
| 6 | import br.com.ec.repository.PapelRepository; |
||
| 7 | import br.com.ec.repository.SistemaAbstractRepository; |
||
| 8 | |||
| 9 | @Repository |
||
| 10 | public class PapelRepositoryJpaImpl extends SistemaAbstractRepository<Papel> implements PapelRepository { |
||
| 11 | |||
| 12 | @Override |
||
| 13 | protected String getColunaOrdenadora() { |
||
| 14 | return "descricao"; |
||
| 15 | } |
||
| 16 | |||
| 17 | } |