fei.wang
2024-03-21 ab64b09ce3020b376af1e6ee0326ea71330d34ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package com.flow.util;
 
public class resultutil<T> {
    public resultutil() {
    }
 
    public static <T> result<T> returnSuccess(String msg, T data) {
        return new result(msg, data);
    }
 
    public static <T> pageresult<T> returnSuccess(Long count, String msg, T data) {
        return new pageresult(count, msg, data);
    }
 
    public static <T> pageresult<T> returnSuccess(Long count, T data) {
        return new pageresult(count, data);
    }
}