| 8 | import java.util.Date; |
| 9 | |
| 10 | @Data |
| 11 | @TableName(schema = "main",value = "offline_msg") |
| 12 | public class OfflineMsg{ |
| 13 | |
| 14 | private static final long serialVersionUID = 1L; |
| 15 | |
| 16 | @TableId(value = "id",type = IdType.AUTO) |
| 17 | private String id; |
| 18 | private String fromId; |
| 19 | private String toId; |
| 20 | private String msg; |
| 21 | private String time; |
| 22 | private Integer type; |
| 23 | private String groupId; |
| 24 | private String profile; |
| 25 | |
| 26 | } |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected