springboot传参合和反参时值为null的处理

@JsonIgnoreProperties(ignoreUnknown = true)   //忽略传参时其他无用字段
@JsonInclude(JsonInclude.Include.NON_NULL)   // 忽略反参时值为null的字段
public class BaseAreaBO implements Serializable {

    @ApiModelProperty(value = "地区code")
    private String areaCode;


版权声明:本文为wjc2013481273原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。