Created
July 1, 2014 08:54
-
-
Save masazdream/6f7d37f01d5e1139e733 to your computer and use it in GitHub Desktop.
Doma Entity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Entity(naming = NamingType.SNAKE_LOWER_CASE) | |
| public class BetaDoma { | |
| @Id | |
| @Column(name = "beta_doma_id") | |
| public Integer id; | |
| @Column(name = "beta_doma_message") | |
| public String message; | |
| @Column(name = "beta_doma_number") | |
| public Integer number; | |
| @Column(name = "beta_doma_created_at") | |
| public Timestamp createdAt; | |
| @Column(name = "beta_doma_updated_at") | |
| public Timestamp updatedAt; | |
| @Column(name = "beta_doma_deleted_flag") | |
| public Integer deleted_flag; | |
| @Column(name = "beta_doma_deleted_at") | |
| public Timestamp deletedAt; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment