1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.hxzkmonitor.util;
|
| import lombok.Data;
| import lombok.NoArgsConstructor;
|
| @Data
| @NoArgsConstructor
| public class pageresult<T> extends result<T>{
|
| private Long count;
|
| public pageresult(Long count, String msg, T data){
| super(msg, data);
| this.count=count;
| }
|
| public pageresult(Long count, T data){
| super(data);
| this.count=count;
| }
|
| }
|
|