Guest User

Untitled

a guest
Feb 22nd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. # = DATA SOURCE
  2. # ===============================
  3. # Set here configurations for the database connection
  4. spring.datasource.url=jdbc:mysql://localhost:3306/holmes_kyc_config
  5. spring.datasource.username=root
  6. spring.datasource.password=root123
  7. spring.datasource.driver-class-name=com.mysql.jdbc.Drive
  8.  
  9. @Id
  10. @GeneratedValue(strategy = GenerationType.IDENTITY)
  11. @Column(name = "iduser_auth")
  12. private Integer iduser_auth;
  13.  
  14. @Entity
  15. @Table(name = "user_auth",schema = "kyc_user_schema")
  16. public class PhaseStatus implements Serializable {
  17.  
  18. @Id
  19. @GeneratedValue(strategy = GenerationType.IDENTITY)
  20. @Column(name = "idnew_table")
  21. private Integer idnew_table;
Add Comment
Please, Sign In to add comment