You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.3 KiB
82 lines
1.3 KiB
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;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} |