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.
21 lines
723 B
21 lines
723 B
package servlet;
|
|
|
|
import javax.servlet.ServletException;
|
|
import javax.servlet.annotation.WebServlet;
|
|
import javax.servlet.http.HttpServlet;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import java.io.IOException;
|
|
import java.util.Map;
|
|
|
|
@WebServlet(name = "teacher-team-fill-opening-report-opinion")
|
|
public class S_TeacherTeamFillOpeningReportOpinion extends HttpServlet {
|
|
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
|
String id = request.getParameter("id");
|
|
Map<String,String> vMap = servlet.Utils.getVMap(vName,request);
|
|
|
|
}
|
|
static String[] vName = {
|
|
""
|
|
};
|
|
} |