Rev 106 | Rev 250 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 106 | Rev 195 | ||
|---|---|---|---|
| Line 8... | Line 8... | ||
| 8 | import javax.persistence.GeneratedValue; |
8 | import javax.persistence.GeneratedValue; |
| 9 | import javax.persistence.GenerationType; |
9 | import javax.persistence.GenerationType; |
| 10 | import javax.persistence.Id; |
10 | import javax.persistence.Id; |
| 11 | import javax.persistence.SequenceGenerator; |
11 | import javax.persistence.SequenceGenerator; |
| 12 | import javax.persistence.Table; |
12 | import javax.persistence.Table; |
| - | 13 | ||
| 13 | import javax.validation.constraints.NotNull; |
14 | import javax.validation.constraints.NotNull; |
| 14 | import javax.validation.constraints.Size; |
15 | import javax.validation.constraints.Size; |
| 15 | 16 | ||
| 16 | import org.hibernate.validator.constraints.NotEmpty; |
17 | import org.hibernate.validator.constraints.NotEmpty; |
| 17 | 18 | ||
| 18 | import br.edu.cesmac.core.interfaces.Alterar; |
- | |
| 19 | import br.edu.cesmac.core.interfaces.Cadastrar; |
- | |
| 20 | import br.edu.cesmac.core.util.StringUtil; |
- | |
| - | 19 | import br.com.ec.core.interfaces.Alterar; |
|
| - | 20 | import br.com.ec.core.interfaces.Cadastrar; |
|
| - | 21 | import br.com.ec.core.util.StringUtil; |
|
| 21 | 22 | ||
| 22 | @Entity |
23 | @Entity |
| 23 | @Table(name="sec_vigencia", schema="sc_sec") |
24 | @Table(name="sec_vigencia", schema="sc_sec") |
| 24 | public class Vigencia implements Serializable { |
25 | public class Vigencia implements Serializable { |
| 25 | 26 | ||