Merge remote-tracking branch 'origin/master' into 4.2.x

This commit is contained in:
William Cheng
2019-10-04 15:02:58 +08:00
1246 changed files with 29609 additions and 16734 deletions

View File

@@ -17,5 +17,6 @@ Name | Type | Description | Notes
**dateTime** | **Date** | | [optional]
**uuid** | **String** | | [optional]
**password** | **String** | |
**bigDecimal** | **Number** | | [optional]

View File

@@ -105,6 +105,9 @@
if (data.hasOwnProperty('password')) {
obj['password'] = ApiClient.convertToType(data['password'], 'String');
}
if (data.hasOwnProperty('BigDecimal')) {
obj['BigDecimal'] = ApiClient.convertToType(data['BigDecimal'], 'Number');
}
}
return obj;
}
@@ -161,6 +164,10 @@
* @member {String} password
*/
exports.prototype['password'] = undefined;
/**
* @member {Number} BigDecimal
*/
exports.prototype['BigDecimal'] = undefined;