From 243665f3ae03bbfa87a7c680968257b59d934487 Mon Sep 17 00:00:00 2001 From: pd <2776455882@qq.com> Date: Sun, 26 Jul 2020 10:53:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=A1=A5=E8=80=83=E4=BF=A1?= =?UTF-8?q?=E6=81=AFVo=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yipin/liuwanr/vo/MakeupStudentsVo.java | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 src/main/java/com/yipin/liuwanr/vo/MakeupStudentsVo.java diff --git a/src/main/java/com/yipin/liuwanr/vo/MakeupStudentsVo.java b/src/main/java/com/yipin/liuwanr/vo/MakeupStudentsVo.java new file mode 100644 index 0000000..3236518 --- /dev/null +++ b/src/main/java/com/yipin/liuwanr/vo/MakeupStudentsVo.java @@ -0,0 +1,71 @@ +package com.yipin.liuwanr.vo; + +import com.yipin.liuwanr.entity.Makeuplist; +import com.yipin.liuwanr.entity.Student; +import org.springframework.web.multipart.MultipartFile; + +/** + * 补考名单信息 + */ +public class MakeupStudentsVo extends Makeuplist { + + private MultipartFile file;//上传文件 + private Integer staffId;//教师id + private Integer schoolId;//学校id + private long uploadTime;//上传时间 + private Integer uploadType;//上传方式 + + private String time;//yyyy-MM-dd HH:mm + + + public MakeupStudentsVo() { } + + + public String getTime() { + return time; + } + + public Integer getSchoolId() { + return schoolId; + } + + public void setSchoolId(Integer schoolId) { + this.schoolId = schoolId; + } + + public void setTime(String time) { + this.time = time; + } + + public MultipartFile getFile() { + return file; + } + + public void setFile(MultipartFile file) { + this.file = file; + } + + public Integer getStaffId() { + return staffId; + } + + public void setStaffId(Integer staffId) { + this.staffId = staffId; + } + + public long getUploadTime() { + return uploadTime; + } + + public void setUploadTime(long uploadTime) { + this.uploadTime = uploadTime; + } + + public Integer getUploadType() { + return uploadType; + } + + public void setUploadType(Integer uploadType) { + this.uploadType = uploadType; + } +}