All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.minlia.rocket.stateful.body.WithResultBody Maven / Gradle / Ivy

There is a newer version: 2.0.4.1.RELEASE
Show newest version
package com.minlia.rocket.stateful.body;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * @author will
 */
@Data
@ApiModel(value = "withResultBody", description = "带结果的主体")
public class WithResultBody implements Body {

  /**
   * result
   */
  @ApiModelProperty(value = "result", notes = "Result")
  private T result;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy