fei.wang
2024-03-07 80c20bb65f4b73d8beb817e0d595889cd44479dd
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);
    }
}