update README.md.

master
applesline 2022-01-21 07:12:22 +00:00 committed by Gitee
parent 8a349a145d
commit a3561593c8
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 28 additions and 0 deletions

View File

@ -208,6 +208,34 @@ public class DemoApplication {
}
}
```
##### 场景中依赖的实体类结构
```
class ApiResult {
private String _mobile;
private Result result;
public ApiResult(String _mobile, Result result) {
this._mobile = _mobile;
this.result = result;
}
setter...
getter...
}
class Result {
private String _email;
private String _mobile;
public Result(String _email, String _mobile) {
this._email = _email;
this._mobile = _mobile;
}
setter...
getter...
}
```
#### 参与贡献