Merge remote-tracking branch 'origin/5.3.x' into 6.0.x

This commit is contained in:
William Cheng
2021-07-12 17:11:35 +08:00
3874 changed files with 120282 additions and 21640 deletions

View File

@@ -1 +1,5 @@
6.0.0-SNAPSHOT
<<<<<<< HEAD
6.0.0-SNAPSHOT
=======
5.3.0-SNAPSHOT
>>>>>>> origin/5.3.x

View File

@@ -1,5 +1,9 @@
/**
<<<<<<< HEAD
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (6.0.0-SNAPSHOT).
=======
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (5.3.0-SNAPSHOT).
>>>>>>> origin/5.3.x
* https://openapi-generator.tech
* Do not edit the class manually.
*/

View File

@@ -1,5 +1,9 @@
/**
<<<<<<< HEAD
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (6.0.0-SNAPSHOT).
=======
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (5.3.0-SNAPSHOT).
>>>>>>> origin/5.3.x
* https://openapi-generator.tech
* Do not edit the class manually.
*/

View File

@@ -1,5 +1,9 @@
/**
<<<<<<< HEAD
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (6.0.0-SNAPSHOT).
=======
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (5.3.0-SNAPSHOT).
>>>>>>> origin/5.3.x
* https://openapi-generator.tech
* Do not edit the class manually.
*/

View File

@@ -1,5 +1,9 @@
/**
<<<<<<< HEAD
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (6.0.0-SNAPSHOT).
=======
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (5.3.0-SNAPSHOT).
>>>>>>> origin/5.3.x
* https://openapi-generator.tech
* Do not edit the class manually.
*/

View File

@@ -1,5 +1,9 @@
/**
<<<<<<< HEAD
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (6.0.0-SNAPSHOT).
=======
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (5.3.0-SNAPSHOT).
>>>>>>> origin/5.3.x
* https://openapi-generator.tech
* Do not edit the class manually.
*/

View File

@@ -1,5 +1,9 @@
/**
<<<<<<< HEAD
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (6.0.0-SNAPSHOT).
=======
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (5.3.0-SNAPSHOT).
>>>>>>> origin/5.3.x
* https://openapi-generator.tech
* Do not edit the class manually.
*/

View File

@@ -44,7 +44,7 @@ public class FormatTest {
private byte[] _byte;
@JsonProperty("binary")
private org.springframework.web.multipart.MultipartFile binary;
private org.springframework.core.io.Resource binary;
@JsonProperty("date")
@org.springframework.format.annotation.DateTimeFormat(iso = org.springframework.format.annotation.DateTimeFormat.ISO.DATE)
@@ -236,7 +236,7 @@ public class FormatTest {
this._byte = _byte;
}
public FormatTest binary(org.springframework.web.multipart.MultipartFile binary) {
public FormatTest binary(org.springframework.core.io.Resource binary) {
this.binary = binary;
return this;
}
@@ -249,11 +249,11 @@ public class FormatTest {
@Valid
public org.springframework.web.multipart.MultipartFile getBinary() {
public org.springframework.core.io.Resource getBinary() {
return binary;
}
public void setBinary(org.springframework.web.multipart.MultipartFile binary) {
public void setBinary(org.springframework.core.io.Resource binary) {
this.binary = binary;
}