package com.qianwen.core.tool.jackson;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
@ConfigurationProperties("blade.jackson")
|
/* loaded from: blade-core-tool-9.3.0.0-SNAPSHOT.jar:org/springblade/core/tool/jackson/BladeJacksonProperties.class */
|
public class BladeJacksonProperties {
|
private Boolean nullToEmpty = Boolean.TRUE;
|
private Boolean bigNumToString = Boolean.TRUE;
|
private Boolean supportTextPlain = Boolean.FALSE;
|
|
public void setNullToEmpty(final Boolean nullToEmpty) {
|
this.nullToEmpty = nullToEmpty;
|
}
|
|
public void setBigNumToString(final Boolean bigNumToString) {
|
this.bigNumToString = bigNumToString;
|
}
|
|
public void setSupportTextPlain(final Boolean supportTextPlain) {
|
this.supportTextPlain = supportTextPlain;
|
}
|
|
public Boolean getNullToEmpty() {
|
return this.nullToEmpty;
|
}
|
|
public Boolean getBigNumToString() {
|
return this.bigNumToString;
|
}
|
|
public Boolean getSupportTextPlain() {
|
return this.supportTextPlain;
|
}
|
}
|