对比新文件 |
| | |
| | | // |
| | | // 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); |
| | | } |
| | | } |