1. ホーム

ApiModelProperty の使用方法

2022-02-19 11:44:26

@ApiModelProperty() は、メソッド、フィールドに使用され、モデルのプロパティの説明やデータ操作の変更を示します。 
値フィールドの記述 
name-属性の名前を書き換える 
dataType-属性の種類を書き換えます。 
required-必須かどうか 
例題-example 
非表示-非表示

@ApiModel(value="user object",description="user object user")
public class User implements Serializable{
    private static final long serialVersionUID = 1L;
     @ApiModelProperty(value="username",name="username",example="xingguo")
     private String username;
     @ApiModelProperty(value="state",name="state",required=true)
      private Integer state;
      private String password;
      private String nickName;
      private Integer isDeleted;

      @ApiModelProperty(value="id array",hidden=true)
      private String[] ids;
      private List<String> idList;
     // omit get/set
}

元のアドレス:https://www.cnblogs.com/huanghuanghui/p/9086860.html

取得元:https://www.cnblogs.com/jpfss/p/11439601.html