12345678910111213141516171819202122232425 |
- /**
- *
- */
- package com.yihu.base.security.vo;
- /**
- * chenweida
- */
- public class SimpleResponse {
-
- public SimpleResponse(Object content){
- this.content = content;
- }
-
- private Object content;
- public Object getContent() {
- return content;
- }
- public void setContent(Object content) {
- this.content = content;
- }
-
- }
|