首页 > 其他分享 >5.24博客

5.24博客

时间:2024-06-16 20:23:54浏览次数:14  
标签:studentid String 博客 classname 5.24 phonenumber public name

体育比赛也是完美收工,全胜

学习内容:spring-boot自定义stater

安卓:

package com.example.app_02.entity;
public class UserInfo {     private String studentid;     private String name;     private String phonenumber;     private String classname;
    public UserInfo() {     }
    public UserInfo(String studentid, String name, String phonenumber, String classname) {         this.studentid = studentid;         this.name = name;         this.phonenumber = phonenumber;         this.classname = classname;     }
    /**      * 获取      * @return studentid      */     public String getStudentid() {         return studentid;     }
    /**      * 设置      * @param studentid      */     public void setStudentid(String studentid) {         this.studentid = studentid;     }
    /**      * 获取      * @return name      */     public String getName() {         return name;     }
    /**      * 设置      * @param name      */     public void setName(String name) {         this.name = name;     }
    /**      * 获取      * @return phonenumber      */     public String getPhonenumber() {         return phonenumber;     }
    /**      * 设置      * @param phonenumber      */     public void setPhonenumber(String phonenumber) {         this.phonenumber = phonenumber;     }
    /**      * 获取      * @return classname      */     public String getClassname() {         return classname;     }
    /**      * 设置      * @param classname      */     public void setClassname(String classname) {         this.classname = classname;     }
    public String toString() {         return "User{studentid = " + studentid + ", name = " + name + ", phonenumber = " + phonenumber + ", classname = " + classname + "}";     } }

标签:studentid,String,博客,classname,5.24,phonenumber,public,name
From: https://www.cnblogs.com/zjm921/p/18251182

相关文章

  • 5.25博客
    满满一周的课终于结束,奖励自己一杯奶茶吧学习内容:安卓packagecom.example.app_02.utils;importcom.example.app_02.R;importcom.example.app_02.database.MySQLConnection;importcom.example.app_02.entity.Record;importcom.example.app_02.entity.User;importja......
  • 5.28博客
    又是周一,那些杀不死我的还不如直接杀死我学习内容:安卓packagecom.example.app_02.utils;importcom.example.app_02.database.MySQLConnection;importcom.example.app_02.entity.User;importcom.example.app_02.entity.UserInfo;publicclassUserDaoextendsMySQLCo......
  • 5.29博客
    上午计网下午建民老师的课学习内容:安卓packagecom.example.app_02.utils;importcom.example.app_02.database.MySQLConnection;importcom.example.app_02.entity.User;importcom.example.app_02.entity.UserInfo;publicclassUserInfoDaoextendsMySQLConnection{......
  • 5.30博客
    周三:python和工程数学python学习:importrequestsfrombs4importBeautifulSoupasbsimportpandasaspdfrommatplotlibimportpyplotaspltdefget_rank(url):count=0 rank=\[\] headers={    "user-agent":"Mozilla/5.0(WindowsNT10......
  • 5.14博客
    学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="wrap_content"......
  • 5.13博客
    看看日历又是周一,本来都起床了感觉尸体有点不舒服,再躺会吧学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="......
  • 5.17博客
    排球课比赛快完了,目前为止一场没输过,我感觉这跟我课脱不了关系学习内容:spring-boot注册条件安卓:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:id="@+id/ll_item"  an......
  • 5.6博客
    过完五一假了该进入学习状态了学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="m......
  • 4.30博客
    上午计网下午建民课晚上跑步真是充实学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical&qu......
  • 2024年6月16日 18:10,cnblog博客园的第一天!!!
    终于A了P06614迷宫游戏5,原来是动态规划......点击查看代码#include<bits/stdc++.h>#definedebug(a);cout<<#a<<"="<<a<<endl;#definerep(i,a,b)for(inti=a;i<=b;i++)#definepep(i,a,b)for(inti=a;i>=b;i--)usingnamespacestd;......