|
@@ -38,6 +38,10 @@ public class ReviewService {
|
|
|
return answerDao.findAnswersByReport(report_id);
|
|
|
}
|
|
|
|
|
|
+ public List<ReviewAnswer>getAnswersByWorkerItem(String worker_id,String item_id){
|
|
|
+ return answerDao.findAnswersByWorkerItem(worker_id, item_id);
|
|
|
+ }
|
|
|
+
|
|
|
// public String saveAnswer(String item_id, String worker_id,String job_id, List<String>answers,List<String> attachment_location){
|
|
|
// Answer answer=new Answer(item_id,answers,worker_id,attachment_location,job_id);
|
|
|
// return answerDao.save(answer);
|