| 1234567891011121314 |
- package com.weblux.launchredis.test;
- import org.springframework.data.annotation.Id;
- import org.springframework.data.relational.core.mapping.Table;
- import java.io.Serializable;
- /**
- * Created by rajeevkumarsingh on 08/09/17.
- */
- @Table("t_weet")
- public record TweetTest(@Id Long id, String text) implements Serializable {
- }
|