(String code)
| 85 | return this; |
| 86 | } |
| 87 | public R code(String code){ |
| 88 | this.setCode(code); |
| 89 | return this; |
| 90 | } |
| 91 | //链式编程在放map的Data里似乎特别好用 , 使用 map 的好处在于 一些原本用 多种场景的dto类,现在只需要在map里设置不同的 key来实现 |
| 92 | public R data(String key, Object value){ |
| 93 | this.data.put(key, value); |
no outgoing calls
no test coverage detected