TweetTest.java 327 B

1234567891011121314
  1. package com.weblux.launchredis.test;
  2. import org.springframework.data.annotation.Id;
  3. import org.springframework.data.relational.core.mapping.Table;
  4. import java.io.Serializable;
  5. /**
  6. * Created by rajeevkumarsingh on 08/09/17.
  7. */
  8. @Table("t_weet")
  9. public record TweetTest(@Id Long id, String text) implements Serializable {
  10. }