skyouc
2025-04-02 fa3f1c489ea37821c58fd95269a0cbaf9492668c
1
2
3
4
5
6
7
8
9
10
package com.vincent.rsf.common.utils;
 
/**
 * Created by vincent on 2023/3/22
 */
public interface RequestSupport<T> {
 
    boolean success(T t);
 
}