From a3561593c8ada733b42dee3fe568779ff9735a58 Mon Sep 17 00:00:00 2001 From: applesline Date: Fri, 21 Jan 2022 07:12:22 +0000 Subject: [PATCH] update README.md. --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index fa7e4b6..f004d6f 100644 --- a/README.md +++ b/README.md @@ -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... +} +``` #### 参与贡献