博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学生管理系统----学生封装类
阅读量:5360 次
发布时间:2019-06-15

本文共 3081 字,大约阅读时间需要 10 分钟。

Student.java:

/** * @Title:Student.java * @Package:com.you.student.system.model * @Description:学生信息封装类 * @author:Youhaidong(游海东) * @date:2014-6-16 下午11:00:22 * @version V1.0 */package com.you.student.system.model;import java.io.Serializable;import java.util.Date;/** * 类功能说明 * 类改动者 改动日期 * 改动说明 * 

Title:Student.java

*

Description:游海东个人开发

*

Copyright:Copyright(c)2013

* @author:游海东 * @date:2014-6-16 下午11:00:22 * @version V1.0 */public class Student implements Serializable { /** * @Fields serialVersionUID:序列化 */ private static final long serialVersionUID = 1L; /** * 学号 */ private String stuNo; /** * 姓名 */ private String stuName; /** * 性别 */ private String stuSex; /** * 出生日期 */ private Date birthday; /** * 专业 */ private String professional; /** * 总学分 */ private double score; /** * 备注 */ private String remarks; /** * 照片 */ private byte[] photo; /** *

Title:

*

Description:无參构造函数

*/ public Student() { super(); } /** *

Title:

*

Description:

* @param stuNo * @param stuName * @param stuSex * @param birthday * @param professional * @param score * @param remarks * @param photo */ public Student(String stuNo, String stuName, String stuSex, Date birthday, String professional, double score, String remarks, byte[] photo) { super(); this.stuNo = stuNo; this.stuName = stuName; this.stuSex = stuSex; this.birthday = birthday; this.professional = professional; this.score = score; this.remarks = remarks; this.photo = photo; } /** * @return the stuNo */ public String getStuNo() { return stuNo; } /** * @param stuNo the stuNo to set */ public void setStuNo(String stuNo) { this.stuNo = stuNo; } /** * @return the stuName */ public String getStuName() { return stuName; } /** * @param stuName the stuName to set */ public void setStuName(String stuName) { this.stuName = stuName; } /** * @return the stuSex */ public String getStuSex() { return stuSex; } /** * @param stuSex the stuSex to set */ public void setStuSex(String stuSex) { this.stuSex = stuSex; } /** * @return the birthday */ public Date getBirthday() { return birthday; } /** * @param birthday the birthday to set */ public void setBirthday(Date birthday) { this.birthday = birthday; } /** * @return the professional */ public String getProfessional() { return professional; } /** * @param professional the professional to set */ public void setProfessional(String professional) { this.professional = professional; } /** * @return the score */ public double getScore() { return score; } /** * @param score the score to set */ public void setScore(double score) { this.score = score; } /** * @return the remarks */ public String getRemarks() { return remarks; } /** * @param remarks the remarks to set */ public void setRemarks(String remarks) { this.remarks = remarks; } /** * @return the photo */ public byte[] getPhoto() { return photo; } /** * @param photo the photo to set */ public void setPhoto(byte[] photo) { this.photo = photo; } }

转载于:https://www.cnblogs.com/yangykaifa/p/6942165.html

你可能感兴趣的文章
C#后台程序与HTML页面中JS方法互调
查看>>
mysql 同一个表中 字段a 的值赋值到字段b
查看>>
linux系统可执行文件添加环境变量使其跨终端和目录执行
查看>>
Window7通过Anaconda安装Tensorflow
查看>>
antiSMASH数据库:微生物次生代谢物合成基因组簇查询和预测
查看>>
UNICODE与ANSI的区别
查看>>
nginx 配置实例
查看>>
Flutter - 创建底部导航栏
查看>>
ASP.NET MVC 教程-MVC简介
查看>>
SQL Server索引 - 聚集索引、非聚集索引、非聚集唯一索引 <第八篇>
查看>>
转载:详解SAP TPM解决方案在快速消费品行业中的应用
查看>>
Android OpenGL ES 开发(N): OpenGL ES 2.0 机型兼容问题整理
查看>>
项目中用到的技术及工具汇总(持续更新)
查看>>
【算法】各种排序算法测试代码
查看>>
HDU 5776 Sum
查看>>
201521123044 《Java程序设计》第9周学习总结
查看>>
winfrom 图片等比例压缩
查看>>
人工智能实验报告一
查看>>
用LR12录制app,用LR11跑场景,无并发数限制,已试验过,可行!
查看>>
python 多线程就这么简单(转)
查看>>