1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| package com.demo.lib.common.entity;
|
| /**
| *粘贴板复制的内容
| */
| public class ClipCopyContent {
|
| private String content;
| private long time;
|
| public ClipCopyContent(String content, long time) {
| this.content = content;
| this.time = time;
| }
|
|
|
| public String getContent() {
| return content;
| }
|
| public void setContent(String content) {
| this.content = content;
| }
|
| public long getTime() {
| return time;
| }
|
| public void setTime(long time) {
| this.time = time;
| }
|
|
|
| }
|
|