yangys
2024-03-31 2969df3e404db3cd116f27db1495e523ce05bf86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
    }
}