Skip to content

Commit 47b5e80

Browse files
committed
feat: 提供 MybatisPlus 高级筛选2
1 parent 50c4f5d commit 47b5e80

File tree

1 file changed

+21
-0
lines changed
  • mpdemo/src/main/java/com/jiangfeixiang/mpdemo/core/vo

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package com.jiangfeixiang.mpdemo.core.vo;
2+
3+
import lombok.Data;
4+
5+
@Data
6+
public class LiveResp<T> {
7+
private int code = 200;
8+
private String message = "";
9+
private T data;
10+
/**
11+
* 响应时间戳
12+
*/
13+
private Long timestamp = System.currentTimeMillis();
14+
15+
public LiveResp() {
16+
}
17+
18+
public LiveResp(T data) {
19+
this.data = data;
20+
}
21+
}

0 commit comments

Comments
 (0)