MCPcopy Create free account
hub / github.com/Thecosy/Ice-chat / OfflineMsg

Class OfflineMsg

src/main/java/com/ninespace/sqlite/entity/OfflineMsg.java:10–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import java.util.Date;
9
10@Data
11@TableName(schema = "main",value = "offline_msg")
12public 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected