parent
95e83aa088
commit
845c32bb82
@ -0,0 +1,82 @@
|
||||
package com.domain;
|
||||
|
||||
import java.sql.Date;
|
||||
|
||||
public class Report {
|
||||
|
||||
|
||||
private int rid;
|
||||
private String uid;
|
||||
private Date rdate;
|
||||
private String result;
|
||||
private String advice;
|
||||
private byte[] rpicture;
|
||||
|
||||
public Report() { }
|
||||
public Report(int rid, String uid, Date rdate, String result, String advice, byte[] rpicture) {
|
||||
|
||||
this.rid = rid;
|
||||
this.uid = uid;
|
||||
this.rdate = rdate;
|
||||
this.result = result;
|
||||
this.advice = advice;
|
||||
this.rpicture = rpicture;
|
||||
}
|
||||
|
||||
|
||||
public int getRid() {
|
||||
return rid;
|
||||
}
|
||||
|
||||
public void setRid(int rid) {
|
||||
this.rid = rid;
|
||||
}
|
||||
|
||||
public String getUid() {
|
||||
return uid;
|
||||
}
|
||||
|
||||
public void setUid(String uid) {
|
||||
this.uid = uid;
|
||||
}
|
||||
|
||||
public Date getRdate() {
|
||||
return rdate;
|
||||
}
|
||||
|
||||
public void setRdate(Date rdate) {
|
||||
this.rdate = rdate;
|
||||
}
|
||||
|
||||
public String getResult() {
|
||||
return result;
|
||||
}
|
||||
|
||||
public void setResult(String result) {
|
||||
this.result = result;
|
||||
}
|
||||
|
||||
public String getAdvice() {
|
||||
return advice;
|
||||
}
|
||||
public void setAdvice(String advice) {
|
||||
this.advice = advice;
|
||||
}
|
||||
|
||||
public void setCompany(String advice) {
|
||||
this.advice = advice;
|
||||
}
|
||||
|
||||
public byte[] getRpicture() {
|
||||
return rpicture;
|
||||
}
|
||||
|
||||
public void setRpicture(byte[] rpicture) {
|
||||
this.rpicture = rpicture;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in new issue