com.nxyfan.framework.common.pojo.CommonWrapperInterface Maven / Gradle / Ivy
package com.nxyfan.framework.common.pojo;
import cn.hutool.json.JSONObject;
/**
* 通用包装接口
*
* @author amour
* @date 2022/9/15 21:17
*/
public interface CommonWrapperInterface {
/**
* 执行包装
*
* @author amour
* @date 2022/9/15 21:17
*/
JSONObject doWrap(T wrapperObject);
}