123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>UserInfo</title>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/google-code-prettify@1.0.5/bin/prettify.min.css">
- <link href="../style.css" rel="stylesheet" />
- </head>
- <body onload="PR.prettyPrint()">
- <pre class="prettyprint lang-java">
- public class UserInfo implements Serializable{
- private long id; //
- private String email; //
- private String name; //
- private String mobile; //
- private String school; //
- private String openId; //
- public long getId(){
- return id;
- }
- public void setId(long id){
- this.id = id;
- }
- public String getEmail(){
- return email;
- }
- public void setEmail(String email){
- this.email = email;
- }
- public String getName(){
- return name;
- }
- public void setName(String name){
- this.name = name;
- }
- public String getMobile(){
- return mobile;
- }
- public void setMobile(String mobile){
- this.mobile = mobile;
- }
- public String getSchool(){
- return school;
- }
- public void setSchool(String school){
- this.school = school;
- }
- public String getOpenId(){
- return openId;
- }
- public void setOpenId(String openId){
- this.openId = openId;
- }
- }
- </pre>
- <script src="https://cdn.jsdelivr.net/npm/google-code-prettify@1.0.5/bin/prettify.min.js"></script>
- </body>
- </html>
|