// // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package com.flow.util; public class resultutil { public resultutil() { } public static result returnSuccess(String msg, T data) { return new result(msg, data); } public static pageresult returnSuccess(Long count, String msg, T data) { return new pageresult(count, msg, data); } public static pageresult returnSuccess(Long count, T data) { return new pageresult(count, data); } }