top.cutexingluo.tools.designtools.json.serializer.DefaultStrJsonStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xingtools-extra Show documentation
Show all versions of xingtools-extra Show documentation
xingtools 依赖core,附加,也就是基于 SpringBoot 的一些工具或实体类
package top.cutexingluo.tools.designtools.json.serializer;
import lombok.NoArgsConstructor;
/**
* 默认格式化策略
*
* @author XingTian
* @version 1.0.0
* @date 2024/1/1 14:37
* @since 1.0.4
*/
@NoArgsConstructor
public class DefaultStrJsonStrategy implements StrJsonStrategy {
@Override
public String toJsonStr(String originStr) {
return originStr;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy