package com.iplatform.recvideo.util; import java.io.Serializable; public class SearchRequest implements Serializable { private String img_path; private String top_n; public String getImg_path() { return img_path; } public void setImg_path(String img_path) { this.img_path = img_path; } public String getTop_n() { return top_n; } public void setTop_n(String top_n) { this.top_n = top_n; } }