public class Result<T> {
private int code;
private String msg;
private T body;
I have a generic type in my return structure definition, and then an error occurs when springboot returns
"No converter found for return value of type: class net.zjump.throwbookserver.bean.Result"
how to solve it!