parent
0feb38fc6c
commit
243665f3ae
1 changed files with 71 additions and 0 deletions
@ -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; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue