personatt.java
来自「为交课程设计」· Java 代码 · 共 124 行
JAVA
124 行
package com.infodeliver.hr.person.model;
import java.sql.Blob;
import java.io.InputStream;
import java.io.FileInputStream;
public class PersonAtt {
private String time;
private String inputer_by;
private String customerchecked_times;
private String innerchecked_times;
private String personstatus_id;
private String belongto;
private String order_id;
private String apply_for;
private Blob picture;
private InputStream imgstream;
private InputStream enstream;
private InputStream jpstream;
private InputStream comstream;
public String getInputer_by() {
return inputer_by;
}
public String getCustomerchecked_times() {
return customerchecked_times;
}
public String getBelongto() {
return belongto;
}
public String getTime() {
return time;
}
public String getPersonstatus_id() {
return personstatus_id;
}
public void setInnerchecked_times(String innerchecked_times) {
this.innerchecked_times = innerchecked_times;
}
public void setInputer_by(String inputer_by) {
this.inputer_by = inputer_by;
}
public void setCustomerchecked_times(String customerchecked_times) {
this.customerchecked_times = customerchecked_times;
}
public void setBelongto(String belongto) {
this.belongto = belongto;
}
public void setTime(String time) {
this.time = time;
}
public void setPersonstatus_id(String personstatus_id) {
this.personstatus_id = personstatus_id;
}
public void setPicture(Blob picture) {
this.picture = picture;
}
public void setOrder_id(String order_id) {
this.order_id = order_id;
}
public String getInnerchecked_times() {
return innerchecked_times;
}
public Blob getPicture() {
return picture;
}
public String getOrder_id() {
return order_id;
}
public InputStream getImgstream() {
return imgstream;
}
public InputStream getComstream() {
return comstream;
}
public InputStream getJpstream() {
return jpstream;
}
public InputStream getEnstream() {
return enstream;
}
public String getApply_for() {
return apply_for;
}
public void setImgstream(InputStream imgstream) {
this.imgstream = imgstream;
}
public void setComstream(InputStream comstream) {
this.comstream = comstream;
}
public void setJpstream(InputStream jpstream) {
this.jpstream = jpstream;
}
public void setEnstream(InputStream enstream) {
this.enstream = enstream;
}
public void setApply_for(String apply_for) {
this.apply_for = apply_for;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?