
com.codingapi.springboot.framework.serializable.JsonSerializable Maven / Gradle / Ivy
package com.codingapi.springboot.framework.serializable;
import com.alibaba.fastjson.JSONObject;
import java.io.Serializable;
public interface JsonSerializable extends Serializable {
default String toJson() {
return JSONObject.toJSONString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy