import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import io.swagger.annotations.ApiModelProperty; public class FackResult<T> { @ApiModelProperty(notes = "结果码") private String code; @ApiModelProperty(notes = "提示信息") private String msg; @ApiModelProperty(notes = "返回数据") @JsonInclude(Include.NON_NULL) private T data; @ApiModelProperty(notes = "其他") @JsonInclude(Include.NON_NULL) private Object other; }