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.
		
		
		
		
			
				
					
					
						
							29 lines
						
					
					
						
							832 B
						
					
					
				
			
		
		
	
	
							29 lines
						
					
					
						
							832 B
						
					
					
				package com.ynxbd.wx.ext.report;
 | 
						|
 | 
						|
import com.ynxbd.wx.config.WeChatConfig;
 | 
						|
import lombok.extern.slf4j.Slf4j;
 | 
						|
 | 
						|
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;
 | 
						|
 | 
						|
/**
 | 
						|
 * 石林体检报告重定向
 | 
						|
 *
 | 
						|
 * @Author wsq
 | 
						|
 * @Date 2020/8/4 17:38
 | 
						|
 * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | 
						|
 */
 | 
						|
@Slf4j
 | 
						|
@WebServlet("/ext/tj")
 | 
						|
public class TJServlet extends HttpServlet {
 | 
						|
 | 
						|
 | 
						|
    @Override
 | 
						|
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
 | 
						|
        resp.sendRedirect(WeChatConfig.getWebUrl() + "report-shilin-tj.html");
 | 
						|
    }
 | 
						|
}
 | 
						|
 |